开发者

How to change the value of an NSMutableArray at a particular index

开发者 https://www.devze.com 2023-01-21 09:43 出处:网络
[array objectAtIndex:i]开发者_运维技巧 doesn\'t work as an L value, so it can\'t be used to set the object at index i.Use -insertObject:atIndex: or replaceObjectAtIndex:withObject:.

[array objectAtIndex:i]开发者_运维技巧 doesn't work as an L value, so it can't be used to set the object at index i.


Use -insertObject:atIndex: or replaceObjectAtIndex:withObject:.

0

精彩评论

暂无评论...
验证码 换一张
取 消