tableView的cell注册

UITableView的cell两种注册方法:

[_tabV registerClass:[testTableViewCell class] forCellReuseIdentifier:@"cellId"];
testTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellId" forIndexPath:indexPath];

testTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellId"];
if (!cell) { cell = [[testTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cellId"]; }
系统推荐使用第2中方法。

创建一次的视图写在花括号里面,第1种方法复用的时候需要判断只需创建一次的视图在没在,在的话需要删除重建,不然会叠加在一块儿

你可能感兴趣的:(tableView的cell注册)