摘要: #import #import #import @interface ViewController : UIViewController @property (strong, nonatomic) EKEventStore *eventStore; @property (weak, nonatomic) IBOutlet UITableView *eventsTableView; @p... 阅读全文
posted @ 2016-06-16 17:01 FMDN 阅读(463) 评论(0) 推荐(0)
摘要: 1 -(BOOL)textFieldShouldReturn:(UITextField *)textField 2 { 3 [textField resignFirstResponder]; 4 return NO; 5 } 6 7 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event ... 阅读全文
posted @ 2016-06-16 16:18 FMDN 阅读(255) 评论(0) 推荐(0)
摘要: 一、懒加载 1.懒加载定义 懒加载——也称为延迟加载,即在需要的时候才加载(效率低,占用内存小)。所谓懒加载,写的是其get方法. 注意:如果是懒加载的话则一定要注意先判断是否已经有了,如果没有那么再去进行实例化 2.使用懒加载的好处: (1)不必将创建对象的代码全部写在viewDidLoad方法中 阅读全文
posted @ 2016-06-16 16:14 FMDN 阅读(458) 评论(0) 推荐(0)