11

我有一个核心数据数据库,我正在尝试使用块谓词创建一个提取请求,但我收到一个未知谓词错误:

注意: employeeToHouse 是一个 House 类型的属性,它是在我继承 NSManagedObject 时为我创建的

NSFetchRequest *request = [NSFetchRequest fetchRequestWithEntityName:@"Place"];
request.predicate       = [NSPredicate predicateWithBlock:^BOOL(id evaluatedObject, NSDictionary *bindings) {
    Place *sortPlace            = (Place *)evaluatedObject;
    CLLocation *placeLocation   = [[CLLocation alloc] initWithLatitude:sortPlace.latitude.doubleValue 
                                                             longitude:sortPlace.longitude.doubleValue];
    CLLocationDistance distance = [placeLocation distanceFromLocation:self.userLocation];
    sortPlace.distanceToUser    = [NSNumber numberWithDouble:distance];
    if(distance<3000)
    {
        return YES;
    }
    return NO;
}];
request.sortDescriptors = [NSArray arrayWithObject:[NSSortDescriptor sortDescriptorWithKey:@ "distanceToUser" 
                                                                                 ascending:YES 
                                                                                  selector:@selector(localizedCaseInsensitiveCompare:)]];

[self.loadingView removeSpinner];
[self setupFetchedResultsControllerWithFetchRequest:request];

然后我得到这个错误:

NSInvalidArgumentException',原因:'谓词的未知谓词类型:BLOCKPREDICATE(0x70ad750)'

难道我做错了什么?

4

1 回答 1

15

AFAIK 您不能将块谓词与 CoreData 一起使用。

在此处查看投票最多的答案:NSFetchRequest 和 predicateWithBlock

原因是 CoreData 无法将块中包含的 C 代码转换为 SQL 查询。

于 2013-01-12T07:37:38.023 回答