0
在我的應用我做這件事情,從實體得到一個NSFetchRequest的所有結果在一個NSArray
NSManagedObjectContext *context = [[self sharedAppDelegate] managedObjectContext];
NSError *error = nil;
NSFetchRequest *req = [NSFetchRequest fetchRequestWithEntityName:@"Structure"];
[req setPropertiesToFetch:@[@"id_str"]];
[req setResultType:NSDictionaryResultType];
NSArray *id_str_BD = [context executeFetchRequest:req error:&error];
INT這樣,我獲得NSDictionary
的NSArray
一個IES abtain所有特定的價值,但我想直接的數組值。 什麼是快速獲得它沒有循環的方式?
什麼值的數組? 'id_str'屬性的個別值? –
@TomHarrington我猜OP會檢索一個'id_str'值的數組......但也許我錯了 –