如何在使用storyboard中使用tableViewController中的Prototype Cells 自定义cell

特别提醒在cell的循环使用中,我们一定做到以下两点
1.将cell的数据覆盖掉
2.将cell的状态覆盖掉

1.选中Prototype Cells做一下操作

1.在设置属性一栏将style设置为custom
2.设置identifier便于以后cell创建和循环使用
3.将cell需要展示的控件拖到Prototype Cells中

2.创建一个继承UITableViewCell的类用来管理Prototype Cell中的控件

3.将Prototype Cell的class改成我们创建的类

4.进行拖线获取模型数据,设置内容

5.在控制器中实现以下代码

LRTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@”app”];这要区别我们以前的循环使用的cell的代码,在使用storyboard中使用tableViewController中的Prototype Cells 自定义cell,当程序执行这一句话时,先从缓存池中去带有app标识的cell,如果没有就会按照storyboard中的cell模版创建一个cell

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    LRTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"app"];
    cell.delegate = self;
    cell.app = self.apps[indexPath.row];
    return cell;
}

你可能感兴趣的:(UI,iOS,UITableView)