我想將我存儲的信息提取到我的一個核心數據對象中,並將這些數據存儲到NSDictionary
對象的NSArray
中,以便我可以將此數組發送給我的一個查看並在tableview中顯示數據。如何創建一個NSDictionarys數組
不過我不太清楚如何讓NSDictionary
進入NSArray
,這是因爲它代表我的讀取請求,希望有人能幫幫我把NSDictionary
成NSArray
..林不知道如何做到這一點因爲我如何循環核心數據對象。
// Test listing all FailedBankInfos from the store
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Manuf" inManagedObjectContext:context];
[fetchRequest setEntity:entity];
NSError *error;
NSMutableDictionary *tempManufacturerDictionary = [[ NSMutableDictionary alloc] init];
NSArray *fetchedObjects = [context executeFetchRequest:fetchRequest error:&error];
for (Manuf *manuf in fetchedObjects) {
[tempManufacturerDictionary setObject:manuf.hasMod forKey:@"HASMOD"];
[tempManufacturerDictionary setObject:manuf.isLocked forKey:@"ISLOCKED"];
[tempManufacturerDictionary setObject:manuf.isReg forKey:@"ISREG"];
[tempManufacturerDictionary setObject:manuf.main forKey:@"MAIN"];
// How do I put the Dictionary above into an array?
}
任何幫助,將不勝感激。
您可以將您的字典添加到「NSMutableArray」類型的對象。 – Jeremy