9.UITableView的设置

tableView性能优化 - cell的循环利用

方法1

/**
 *  什么时候调用:每当有一个cell进入视野范围内就会调用
 */
 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 0.重用标识
    // 被static修饰的局部变量:只会初始化一次,在整个程序运行过程中,只有一份内存
    static NSString *ID = @"cell";

    // 1.先根据cell的标识去缓存池中查找可循环利用的cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    // 2.如果cell为nil(缓存池找不到对应的cell)
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
    }

    // 3.覆盖数据
    cell.textLabel.text = [NSString stringWithFormat:@"testdata - %zd", indexPath.row];

    return cell;
}

方法2

  • 定义一个全局变量

    // 定义重用标识
    NSString *ID = @"cell";
  • 注册某个标示对应的cell类型

    // 在这个方法中注册cell
    - (void)viewDidLoad {
    [super viewDidLoad];
    
    // 注册某个标识对应的cell类型
    [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:ID];
    
    • 在数据源方法中返回cell
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
    // 1.去缓存池中查找cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    
    // 2.覆盖数据
    cell.textLabel.text = [NSString stringWithFormat:@"testdata - %zd", indexPath.row];
    
    return cell;
    }
    

方法3

  • 在storyboard中设置UITableView的Dynamic Prototypes Cell

  • 设置cell的重用标识

  • 在代码中利用重用标识获取cell
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // 0.重用标识
    // 被static修饰的局部变量:只会初始化一次,在整个程序运行过程中,只有一份内存
    static NSString *ID = @"cell";

    // 1.先根据cell的标识去缓存池中查找可循环利用的cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];

    // 2.覆盖数据
    cell.textLabel.text = [NSString stringWithFormat:@"testdata - %zd", indexPath.row];

    return cell;
}

错误将UIViewController当做UITableViewController来用

UITableView的常见设置

// 分割线颜色
self.tableView.separatorColor = [UIColor redColor];

// 隐藏分割线
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

// tableView有数据的时候才需要分割线
// 开发小技巧:快速取消分割线
 self.tableView.tableFooterView = [[UIView alloc] init];

UITableViewCell的常见设置

// 取消选中的样式(常用) 让当前 cell 按下无反应
cell.selectionStyle = UITableViewCellSelectionStyleNone;
// 设置选中的背景色
UIView *selectedBackgroundView = [[UIView alloc] init];
selectedBackgroundView.backgroundColor = [UIColor redColor];
cell.selectedBackgroundView = selectedBackgroundView;

// 设置默认的背景色
cell.backgroundColor = [UIColor blueColor];
// 设置默认的背景色
UIView *backgroundView = [[UIView alloc] init];
backgroundView.backgroundColor = [UIColor greenColor];
cell.backgroundView = backgroundView;
// backgroundView的优先级 > backgroundColor

// 设置指示器
//    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.accessoryView = [[UISwitch alloc] init];

自定义cell

  • 等高的cell

    • storyboard自定义cell

      • 创建一个继承自UITableViewCell的子类,比如XMGDealCell

      • 在storyboard中

        • 往cell里面增加需要用到的子控件

        • 设置cell的重用标识

        • 设置cell的class为XMGDealCell
      • 在控制器中

        • 利用重用标识找到cell
        • 给cell传递模型数据
      • 在XMGDealCell中

        • 将storyboard中的子控件连线到类扩展中
        • 需要提供一个模型属性,重写模型的set方法,在这个方法中设置模型数据到子控件上

    • xib自定义cell

      • 1.创建一个继承自UITableViewCell的子类,比如XMGDealCell
      • 2.创建一个xib文件(文件名建议跟cell的类名一样),比如XMGDealCell.xib
        • 拖拽一个UITableViewCell出来
        • 修改cell的class为XMGDealCell
        • 设置cell的重用标识
        • 往cell中添加需要用到的子控件
      • 3.在控制器中

        • 利用registerNib…方法注册xib文件
        • 利用重用标识找到cell(如果没有注册xib文件,就需要手动去加载xib文件)
        • 给cell传递模型数据
      • 4.在XMGDealCell中

        • 将xib中的子控件连线到类扩展中
        • 需要提供一个模型属性,重写模型的set方法,在这个方法中设置模型数据到子控件上
        • 也可以将创建获得cell的代码封装起来(比如cellWithTableView:方法)
    • 代码自定义cell(使用frame)

      • 1.创建一个继承自UITableViewCell的子类,比如XMGDealCell
        • 在initWithStyle:reuseIdentifier:方法中
          • 添加子控件
          • 设置子控件的初始化属性(比如文字颜色、字体)
        • 在layoutSubviews方法中设置子控件的frame
        • 需要提供一个模型属性,重写模型的set方法,在这个方法中设置模型数据到子控件
      • 2.在控制器中
        • 利用registerClass…方法注册XMGDealCell类
        • 利用重用标识找到cell(如果没有注册类,就需要手动创建cell)
        • 给cell传递模型数据
        • 也可以将创建获得cell的代码封装起来(比如cellWithTableView:方法)
    • 代码自定义cell(使用autolayout)

      • 1.创建一个继承自UITableViewCell的子类,比如XMGDealCell
        • 在initWithStyle:reuseIdentifier:方法中
          • 添加子控件
          • 添加子控件的约束(建议使用Masonry
          • 设置子控件的初始化属性(比如文字颜色、字体)
          • 需要提供一个模型属性,重写模型的set方法,在这个方法中设置模型数据到子控件
      • 2.在控制器中
        • 利用registerClass…方法注册XMGDealCell类
        • 利用重用标识找到cell(如果没有注册类,就需要手动创建cell)
        • 给cell传递模型数据
        • 也可以将创建获得cell的代码封装起来(比如cellWithTableView:方法)
  • 非等高的cell
    • xib自定义cell
    • storyboard自定义cell
    • 代码自定义cell(frame)
    • 代码自定义cell(Autolayout)
    • 重点
      • 在模型中增加一个属性cellHeight,用来存放对应cell的高度
      • 在cell中设置模型数据,属性set方法中调用[self layoutIfNeed]方法强制布局,然后计算出模型的cellheight属性值
      • 在控制器中实现tableView:estimatedHeightForRowAtIndexPath:方法,返回一个估计高度,比如200
      • 在控制器中实现tableView:heightForRowAtIndexPath:方法,返回cell的真实高度(模型中的cellHeight属性)

技巧

1. 默认情况下- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath先调用,返回每个单元格的高度,然后调用- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath返回创建的cell,如果要改变两者的调用顺序,可以调用- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath方法。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    XMGStatusCell *cell = [XMGStatusCell cellWithTableView:tableView];
    cell.status = self.statuses[indexPath.row];
    return cell;
}

#pragma mark - 代理方法
/**
 *  返回每一行的高度
 */
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    XMGStatus *staus = self.statuses[indexPath.row];
    return staus.cellHeight;
}

/**
 * 返回每一行的估计高度
 * 只要返回了估计高度,那么就会先调用tableView:cellForRowAtIndexPath:方法创建cell,再调用tableView:heightForRowAtIndexPath:方法获取cell的真实高度
 */
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 200;
}
2.在xib中给UILabel添加约束时,为了保证计算出来的数值 跟 真正显示出来的效果 一致,需要设置label每一行文字的最大宽度。
- (void)awakeFromNib
{
    // 设置label每一行文字的最大宽度
    // 为了保证计算出来的数值 跟 真正显示出来的效果 一致
    self.contentLabel.preferredMaxLayoutWidth = [UIScreen mainScreen].bounds.size.width - 20;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值