2015年11月30日

IOS 关键字self,super,copy, retain, assign , readonly , readwrite, nonatomic、@synthesize、@property、@dynamic

摘要: #synthesize关键字: 根据@property设置,自动生成成员变量相应的存取方法,从而可以使用点操作符来方便的存取该成员变量 。@implementation 关键字,表明类的实现 @end 结束self 关键字 :类似于java中的this,是隐藏参数,指向当前调用方法的类。super ... 阅读全文

posted @ 2015-11-30 19:17 树下茶壶 阅读(122) 评论(0) 推荐(0) 编辑

UITableViewCell自定义cell

摘要: 设计好自定义的cell并且连接好控件后 有两种方法引用我们自己的cell方法1: 1 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 2 { 3... 阅读全文

posted @ 2015-11-30 18:53 树下茶壶 阅读(118) 评论(0) 推荐(0) 编辑

导航