为什么[copy]会影响Xcode中的NSArray

时间:2013-08-27 04:08:22

标签: nsarray nsdictionary

以下是在while循环中编码

[array_stations addObject:[dic_stations copy]];

[array_stations addObject:dic_stations ];

它们之间有什么区别?如果未包含[copy],则while循环内的所有字典项都相同,而NSLog数组。

如果添加[copy],则所有项目都会正常列出。

感谢。

1 个答案:

答案 0 :(得分:1)

[dic_stations copy]代表nsmutabledictionary的对象。 dic_stations代表nsdictionary的对象。有关详情click this link