码迷,mamicode.com
首页 > 其他好文 > 详细

错误代码集合

时间:2015-09-10 21:20:47      阅读:180      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!