在tableView
的cellForRowAtIndexPath
方法中,第一行使用自定义单元格,其他行使用常规UITableViewCell
:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *MyIdentifier = @"Cell";
if (indexPath.section == 0){
CustomTableViewCell *cell = (CustomTableViewCell *)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"CustomTableViewCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
cell.titleLabel.text = @"Custom cell";
if (isLightTheme){
cell.titleLabel.textColor = [UIColor blackColor];
}
else{
cell.titleLabel.textColor = [UIColor whiteColor];
}
return cell;
}
else{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier];
}
cell.textLabel.text = @"Other cells";
if (isLightTheme){
cell.textLabel.textColor = [UIColor blackColor];
}
else{
cell.textLabel.textColor = [UIColor whiteColor];
}
return cell;
}
}
然后,我调用一个更改isLightTheme并重新加载数据的方法:
-(void)changeTheme{
isLightTheme = false;
[self.myTable reloadData];
}
...但是我的应用程序在此行崩溃:
cell.titleLabel.text = @"Custom cell";
与错误:
'-[UITableViewCell titleLabel]:无法识别的选择器已发送到实例
我不明白这是怎么回事..第一次加载
isLightTheme
时,表加载得很好(首先将true
设置为ViewController
),但是当我更改isLightTheme
和reloadData
时,它崩溃了。有人可以帮我吗?谢谢。 最佳答案
两个单元的重用标识符相同。自定义和默认。为每个使用唯一的值。