tableView循环利用性能优化

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;
}

tableView性能优化 - 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;
}

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

  • 在storyboard中设置UITableView的Dynamic Prototypes Cell

    缓存

  • 设置cell的重用标识
    性能优化

  • 在代码中利用重用标识获取cell性能

// 0.重用标识
// 被static修饰的局部变量:只会初始化一次,在整个程序运行过程当中,只有一分内存
static NSString *ID = @"cell";

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

// 2.覆盖数据
cell.textLabel.text = [NSString stringWithFormat:@"cell - %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优化

      • 1.建立一个继承自UITableViewCell的子类,好比XMGDealCell
      • 2.在storyboard中3d

        • 往cell里面增长须要用到的子控件

          code

        • 设置cell的重用标识

          orm

        • 设置cell的class为XMGDealCell

          blog

      • 3.在控制器中继承

        • 利用重用标识找到cell
        • 给cell传递模型数据
      • 4.在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)

相关文章
相关标签/搜索