Heim > Fragen und Antworten > Hauptteil
if (!cell) {
cell = [[AddressTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:addressIdentifier];
}
为什么要加个判断,写这个,什么时候会走这个判断
怪我咯2017-05-02 09:27:41
不判断的话,每次就会创建一个新的,因为你这里有个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:
方法就不需要再加判断了,可以直接取:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"SomeIdentifier"];
//do something
...