0
我嘗試使用下面的代碼來從核心數據特定屬性:的Xcode 8.1的核心數據獲取特定屬性
NSFetchRequest *test = [[NSFetchRequest alloc] init];
test.entity = [NSEntityDescription entityForName:@"MyEntity" inManagedObjectContext:self.currentMainContext];
test.predicate = [NSPredicate predicateWithFormat:@"TRUEPREDICATE"];
test.resultType = NSDictionaryResultType;
test.returnsDistinctResults = YES;
test.propertiesToFetch = @[@"property"];
NSArray *results = [self.currentMainContext executeFetchRequest:test error:error];
,但我得到一個空數組回來。
如果我註釋掉test.resultType = NSDictionaryResultType;
然後我回來的所有實體的數組在我的數據庫如預期。關於NSDictionaryResultType
這是什麼錯誤?