0

我有一个表视图控制器,其中包含由 fetchResultsController 处理的 Formations 列表。

这是我的核心数据实体的样子:

在此处输入图像描述

我尝试dateRange像这样对我的 fetchResultsController 进行排序:

// |fetchedResultsController| custom setter
- (NSFetchedResultsController *)fetchedResultsController {
    if (_fetchedResultsController != nil) {
        return _fetchedResultsController;
    }

    _fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:self.fetchRequest managedObjectContext:self.mainManagedObjectContext sectionNameKeyPath:@"dateRange" cacheName:kFormationsFetchedCacheName];
    _fetchedResultsController.delegate = self;

    return _fetchedResultsController;
}

// |fetchRequest| custom setter
- (NSFetchRequest *)fetchRequest {
    if (_fetchRequest != nil) {
        return _fetchRequest;
    }

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"student == %@", self.currentStudent];
    NSSortDescriptor *dateDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"dateRange" ascending:NO];
    NSSortDescriptor *nameDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:NO];

    _fetchRequest = [[NSFetchRequest alloc] initWithEntityName:kBSFormation];
    _fetchRequest.predicate = predicate;
    _fetchRequest.sortDescriptors = [NSArray arrayWithObjects: dateDescriptor, nameDescriptor, nil];

    return _fetchRequest;
}

当我尝试添加第一个时一切都很好Formation,但是对于接下来的,我有这些错误:

2013-01-30 22:43:08.370 [7202:c07] -[BSDateRange compare:]: unrecognized selector sent to instance 0x81781a0

2013-01-30 22:43:08.371 [7202:c07] CoreData: error: Serious application error.  Exception was caught during Core Data change processing.  This is usually a bug within an observer of NSManagedObjectContextObjectsDidChangeNotification.  -[BSDateRange compare:]: unrecognized selector sent to instance 0x81781a0 with userInfo (null)

2013-01-30 22:43:08.372 [7202:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[BSDateRange compare:]: unrecognized selector sent to instance 0x81781a0'

如果我评论这一行:NSSortDescriptor *dateDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"dateRange" ascending:NO];,它正在工作,但我的表格视图很乱,因为sectionNameKeyPath设置为dateRange

有人在弄清楚这里有什么问题吗?:/

4

1 回答 1

2

您是在告诉它根据dateRange关系进行排序。但是dateRange与 有关系BSDateRange吗,Core Data 如何比较它们?它应该使用from,或者也许to,或者它们的某种组合?您不能只告诉它对这样的对象进行排序,因为排序应该如何工作并不明显。

相反,首先要弄清楚排序甚至意味着什么。然后适当地修改您的排序描述符。例如,如果您决定排序取决于from值,请将排序描述符更改为使用键路径from

NSSortDescriptor *dateDescriptor = [NSSortDescriptor
    sortDescriptorWithKey:@"dateRange.from"
    ascending:NO];

如果您需要同时基于from和进行排序to,请使用多个排序描述符。

于 2013-01-30T22:58:15.360 回答