/** * 何時調用:每當有一個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; }
// 定義重用標識 NSString *ID = @"cell";
// 在這個方法中註冊cell - (void)viewDidLoad { [super viewDidLoad]; // 註冊某個標識對應的cell類型 [self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:ID]; }
- (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; }
在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;
// 分割線顏色 self.tableView.separatorColor = [UIColor redColor]; // 隱藏分割線 self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone; // tableView有數據的時候才須要分割線 // 開發小技巧:快速取消分割線 self.tableView.tableFooterView = [[UIView alloc] init];
// 取消選中的樣式(經常使用) 讓當前 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
字體
storyboard自定義cell
優化
2.在storyboard中3d
往cell裏面增長鬚要用到的子控件
code
設置cell的重用標識
orm
設置cell的class爲XMGDealCell
blog
3.在控制器中繼承
4.在XMGDealCell中
將storyboard中的子控件連線到類擴展中
須要提供一個模型屬性,重寫模型的set方法,在這個方法中設置模型數據到子控件上
xib自定義cell
代碼自定義cell(使用frame)
代碼自定義cell(使用autolayout)
Masonry
)非等高的cell
xib自定義cell
storyboard自定義cell
代碼自定義cell(frame)
代碼自定義cell(Autolayout)