以下是在while循环中编码
[array_stations addObject:[dic_stations copy]];
[array_stations addObject:dic_stations ];
它们之间有什么区别?如果未包含[copy]
,则while循环内的所有字典项都相同,而NSLog
数组。
如果添加[copy]
,则所有项目都会正常列出。
感谢。
答案 0 :(得分:1)
[dic_stations copy]
代表nsmutabledictionary
的对象。 dic_stations
代表nsdictionary
的对象。有关详情click this link。