0
不要爲什麼發生這種情況我有它返回的管理對象iphone:無法將陣列的實例複製到另一個陣列
NSArray *fetchedOutages = [context executeFetchRequest:fetchRequest error:&error];
if (error) {
NSLog(@"Error in Core Data: %@", [error description]);
}
return fetchedOutages;
當我嘗試這個數組複製到listOutage陣列的方法getOutage(此是一個屬性)
@property (nonatomic, retain) NSArray *listOutage
我試圖此數組像這樣在didRowSelectMethod複製這樣
if (listOutage) {
NSLog(@"Its there");
[listOutage release];
}
listOutage=[[NSArray alloc] initWithArray:[self getOutage]];
我嘗試過其他各種方法,但都失敗了。
這getoutage方法返回5個對象五個對象在listOutage得到了複製,但是當我嘗試訪問它們將顯示爲listOutage元素「超出範圍」 請幫我克服這個我有這個傳遞到一個視圖控制器。
在此先感謝