摘要: pod install --verbose --no-repo-update如果直接使用pod install 会先升级pod 然后再去下载别的 阅读全文
posted @ 2015-12-17 17:14 YouNeedCourage 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 原文:http://www.tuicool.com/articles/3ymMzub本来只是打算介绍一下addChildViewController这个方法的,正好今天朋友去换工作面试问到网易新闻标签栏效果的实现,就结合它,用个小Demo实例介绍一下:(具体解释都写在了Demo里面的注释)//// ... 阅读全文
posted @ 2015-12-17 13:36 YouNeedCourage 阅读(234) 评论(0) 推荐(0) 编辑
摘要: #import @interface LPButton : UIView@property (nonatomic,strong) id target;@property (nonatomic,assign) SEL action;- (void)addTarget:(id)target action... 阅读全文
posted @ 2015-12-17 10:25 YouNeedCourage 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 在ARC项目中使用performSelector:withObject:函数出现“performSelector may cause a leak because its selector is unknown”。主要是警告信息,在非ARC项目中没有这个警告。如果是在某一处修改只需要加入下列代码:#... 阅读全文
posted @ 2015-12-17 10:20 YouNeedCourage 阅读(559) 评论(0) 推荐(0) 编辑