博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key
阅读量:5967 次
发布时间:2019-06-19

本文共 1167 字,大约阅读时间需要 3 分钟。

http://blog.csdn/h3c4lenovo/article/details/8556887

 

 

今天在写自定义UITableViewCell的时候遇到一个Crash,特别无语,折腾了大半天,终于解决了。

Bug如下:

 

Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<NSObject 0x8a4b500> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key strss.'

先说解决办法吧:

 

 

然后讲故事:

1.如何使用IOS UITableView?

参考:http://blog.csdn/h3c4lenovo/article/details/8307253

 

2.如何使用自定义的UITableViewCell实现UITableView?

参考:http://www.howzhi.com/group/iosDevelop/discuss/2068

 

3.单独创建的xib/nib文件如何与.h/.m文件关联起来?

定义xib中File's Owner 或 View的Custom Class 如上图所示。注:网上大部分说报错的原因要么就是存在无效的连接,或者File's Owner的custom class没有连接。

 

4.代码中如何引用自定义的TableViewCell?

 

[cpp]   
 
 
    1. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath  
    2. {  
    3.     static NSString *CustomCellIdentifier = @"testCellIdentifier";  
    4.       
    5.     static BOOL nibsRegistered = NO;  
    6.     if (!nibsRegistered) {  
    7.         UINib *nib = [UINib nibWithNibName:@"testCell" bundle:nil];  
    8.         [tableView registerNib:nib forCellReuseIdentifier:CustomCellIdentifier];  
    9.         nibsRegistered = YES;  
    10.     }  
    11.       
    12.     testCell *cell = [tableView dequeueReusableCellWithIdentifier:CustomCellIdentifier];  
    13.   
    14.     [cell setMyText:@"xxx"];  
    15.       
    16.     return cell;  
    17. }  

转载地址:http://momax.baihongyu.com/

你可能感兴趣的文章
在一个程序中调用另一个程序并且传输数据到选择屏幕执行这个程序
查看>>
代码生成工具Database2Sharp中增加视图的代码生成以及主从表界面生成功能
查看>>
关于在VS2005中编写DLL遇到 C4251 警告的解决办法
查看>>
提高信息安全意识对网络勒索病毒说不
查看>>
使用Jquery 加载页面时调用JS
查看>>
css+div+jquery弹出层
查看>>
求职相关(链接,不定期更新)
查看>>
maya pyside 多个窗口实例 报错 解决
查看>>
我的友情链接
查看>>
通知中心
查看>>
我的友情链接
查看>>
MVC中的三个模块
查看>>
Line: 220 - com/opensymphony/xwork2/spring/SpringObjectFactory.java:220:-1
查看>>
oracle 常用命令大汇总
查看>>
2012年春运火车票电话和网上订票技巧、攻略
查看>>
根据request获取请求路径
查看>>
mysql 并行复制
查看>>
傲不可长,欲不可纵,乐不可极,志不可满——提高个人修养
查看>>
linux系统增加swap容量的方法
查看>>
后台调用gps
查看>>