我試圖將對象添加到NSMutableArray "allItems1"
快速枚舉和添加對象的NSMutableArray
for (PMGWine *w in [[PMGWineStore sharedStore]allItems]) {
[allItems1 addObject:w];
NSLog(@"%@", w);
}
NSLog(@"%d", [allItems1 count]);
[[PMGWineStore sharedStore]allItems]
包括:在第一NSLog
聲明完美打印出15個對象的。但是[allItems1 count]
顯示爲0. 我做錯了什麼?
您是否分配了allItems1? –
我宣佈了一個NSMutableArray * allItems1。 – Pete