gpt4 book ai didi

iphone - NSUnknownKeyException setValue :forUndefinedKey:

转载 作者:行者123 更新时间:2023-12-03 18:27:47 26 4
gpt4 key购买 nike

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key buttonOfFirstView.'

为什么我会收到此错误?我正在尝试通过 XIB 制作一个表格单元格。添加此代码后,它会引发上述异常。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *CellIdentifier = @"MyCell";

MyTableViewCell *cell = (MyTableViewCell*) [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {

NSArray *arrayCellXib = [[NSBundle mainBundle] loadNibNamed:@"MyTableViewCell"
owner:self
options:nil];

....
}
.....

return cell;
}

如何解决?

最佳答案

检查 XIB 中对 socket 的引用,其中一个可能引用了不再存在的属性 (buttonOfFirstView)

关于iphone - NSUnknownKeyException setValue :forUndefinedKey:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10828608/

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