最近看大神mj的代码,学到了这个方法,cell重用的第二种方法
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
static NSString *CellIdentifier = @"Cell";
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
//设置你的cell
}
和
[self.tableView registerClass:[CustomCell class] forCellReuseIdentifier:@"CustomCell"];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]
是等价的
时间: 2024-10-22 10:46:16