2015年5月2日
摘要: strong weakstrong与weak是由ARC新引入的对象变量属性ARC引入了新的对象的新生命周期限定,即零弱引用。如果零弱引用指向的对象被deallocated的话,零弱引用的对象会被自动设置为nil。@property(strong) MyClass *myObject;相当于@prop... 阅读全文
posted @ 2015-05-02 14:36 ianhao_cn 阅读(339) 评论(0) 推荐(0) 编辑
摘要: >本篇文章我们使用plist文件先引入一个plist文件的读取```objective-c//设置一个字符串读取文件路径NSString *filePath = [[NSBundle mainBundle] pathForResource:@"Students" ofType:@"plist"];/... 阅读全文
posted @ 2015-05-02 12:34 ianhao_cn 阅读(205) 评论(0) 推荐(0) 编辑
摘要: #UITableView表视图> `UITableViewDataSource`,`UITableViewDelegate` UITabelView表视图的俩个协议,>UITableViewDataSource这个协议中的俩个必须执行的方法```objective-c@required//显示多少行... 阅读全文
posted @ 2015-05-02 11:05 ianhao_cn 阅读(170) 评论(0) 推荐(0) 编辑