gpt4 book ai didi

ios - TableView在reloadData上崩溃-“无法识别的选择器已发送到实例”

转载 作者:行者123 更新时间:2023-12-01 18:56:12 25 4
gpt4 key购买 nike

tableViewcellForRowAtIndexPath方法中,第一行使用自定义单元格,其他行使用常规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),但是当我更改 isLightThemereloadData时,它崩溃了。有人可以帮我吗?谢谢。

最佳答案

两个单元的重用标识符相同。自定义和默认。为每个使用唯一的值。

关于ios - TableView在reloadData上崩溃-“无法识别的选择器已发送到实例”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26759853/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com