carpartsを使用してデータベースから車をプルアップする次のコードがあります。ただし、重複が発生していたため、一意の結果でNSDictionaryResultsTypeを有効にしました(重複を取り除く唯一の方法だと思います)。
今、私は車のオブジェクトではなく、一連の辞書を持っていると信じています。結果に基づいて車のオブジェクトを取得するにはどうすればよいですか?
-(NSArray*) loadCarsFromCoreDataUsingCarParts:(NSMutableArray*)inputCarParts{
NSLog(@"carParts =%@",inputCarParts);
NSFetchRequest *fetchRequest =[[NSFetchRequest alloc]init];
//To find the cars we are using the carParts
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Car" inManagedObjectContext:[self managedObjectContext]];
//sets up fetch request details
[fetchRequest setEntity:entity];
[fetchRequest setPredicate:[self parseSearchObjectsIntoAPredicate:inputCarParts:3]];
[fetchRequest setReturnsDistinctResults:YES];
[fetchRequest setResultType:NSDictionaryResultType];
//Perform fetch
NSError *error;
NSArray *records = [[self managedObjectContext] executeFetchRequest:fetchRequest error:&error];
return records;//i think this is an array of dictionaries
}