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)

相關文章
相關標籤/搜索