if (!cell) {
cell = [[AddressTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:addressIdentifier];
}为什么要加个判断,写这个,什么时候会走这个判断
不判断的话,每次就会创建一个新的,因为你这里有个alloc。一般在这代码之前还有一行:
alloc
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
这行就是取复用的cell的,如果能取到的话,cell就有内存,可以直接复用,取不到的话,就要自己创建了,也就是你贴出来的代码。除此之外,也可以使用注册的方式:
-(void)registerNib:(nullable UINib *)nib forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(5_0); -(void)registerClass:(nullable Class)cellClass forCellReuseIdentifier:(NSString *)identifier NS_AVAILABLE_IOS(6_0);
注册的话,就不需要去判断了。一般来说,这么用:
[self.tableView registerNib:[UINib nibWithNibClass:className] forCellReuseIdentifier:reuseId]; //或者 [self.tableView registerClass:className forCellReuseIdentifier:reuseId];
那么,tableView:cellForRowAtIndexPath:方法就不需要再加判断了,可以直接取:
tableView:cellForRowAtIndexPath:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SomeIdentifier"]; //do something ...
不判断的话,每次就会创建一个新的,因为你这里有个
alloc
。一般在这代码之前还有一行:
这行就是取复用的cell的,如果能取到的话,cell就有内存,可以直接复用,取不到的话,就要自己创建了,也就是你贴出来的代码。
除此之外,也可以使用注册的方式:
注册的话,就不需要去判断了。一般来说,这么用:
那么,
tableView:cellForRowAtIndexPath:
方法就不需要再加判断了,可以直接取: