在我的应用程序中,我这样做是为了从实体中获取所有特定价值
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 这样我获得了一个NSArray
iesNSDictionary
但我直接想要一个值数组。什么是没有循环的快速获取它的方法?