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

NSMutableArray 使用replaceObjectAtIndex: withObject:时出错!!!

时间:2015-02-11 19:08:29      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:出错   nsmutablearray   replaceobjectatindex   

NSMutableArray 使用replaceObjectAtIndex: withObject:时出错,提示 “-[__NSCFArray removeObjectAtIndex:]: mutating method sent to immutable object ”


解决方法:建议在所有程序生成的数组里加上mutableCopy 这个方法 

例如: 
NSMutableArray* favoritedAlready = [[[NSUserDefaults standardUserDefaults] objectForKey:@"favorites"] mutableCopy]; 
如果没加mutablecopy的话 standaradUserdefault会返回一个arrary 这样就会出错 
希望能帮到你



NSMutableArray 使用replaceObjectAtIndex: withObject:时出错!!!

标签:出错   nsmutablearray   replaceobjectatindex   

原文地址:http://zerolee1213.blog.51cto.com/9835168/1613607

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!