首页 > 其他 > 详细

错误代码集合

时间:2015-09-10 21:17:35      阅读:338      评论:0      收藏:0      [点我收藏+]

给不可变数组设置新的key

    
            NSDictionary *dict=@{@"key1":@0};

            [dict setValue:@5 forKey:@"key1"];
            NSLog(@"dict1 ==%@",dict);
            [dict setValue:@5 forKey:@"key2"];
            NSLog(@"dict2 ==%@",dict);


打印内容

 *** Terminating app due to uncaught exception ‘NSUnknownKeyException‘, 
 reason: ‘[<__NSDictionaryI 0x7b6c71c0> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key key1.‘


解决方案

使用可变字典就可以

错误代码集合

原文:http://my.oschina.net/u/2360054/blog/504644

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!