摘要: /** 只需要在你自定义的导航控制器中,改成如下代码即可,自定义手势返回*/#define KEY_WINDOW [[UIApplication sharedApplication] keyWindow]#define kScreenW KEY_WINDOW.bounds.size.width#d... 阅读全文
posted @ 2014-06-06 18:13 itfav 阅读(1292) 评论(0) 推荐(0) 编辑
摘要: - (UIViewController*)viewController { for (UIView* next = [self superview]; next; next =next.superview) { UIResponder*nextResponder = [next nextRe... 阅读全文
posted @ 2014-06-06 17:49 itfav 阅读(136) 评论(0) 推荐(0) 编辑
摘要: //带有属性的文字 //1.创建对象 NSString *original = @"今天你还好吗?"; NSMutableAttributedString *attrTitle = [[NSMutableAttributedStringalloc] initWithString:original]; //2.设置颜色(NSForegroundColorAttributeName代表要设置颜色, value代表值, range 代表范围) /** 其他设置: 1.NSForegroundColorAttributeName //颜色 2.NSFontAttr... 阅读全文
posted @ 2014-03-25 08:40 itfav 阅读(2905) 评论(0) 推荐(0) 编辑