我的 viewWillAppear 方法中有这个
[RPCoreData
getFetchedControllerForCategoryDiscoverDelegate:self completion:^(NSFetchedResultsController *controller) {
self.fetchedResultController = controller;
self.fetchedResultController.delegate = self;
}];
这在我的 CoreData.m 中
+ (void)
getFetchedControllerForCategoryDiscoverDelegateid<NSFetchedResultsControllerDelegate>)delegate
completionvoid (^)(NSFetchedResultsController *controller))
completion {
[MagicalRecord saveWithBlock:^(NSManagedObjectContext *localContext) {
NSFetchedResultsController *controller = [ItemData MR_fetchAllGroupedBy"category.id"
withPredicate:nil
sortedBy"category.id"
ascending:NO
delegate:delegate
inContext:localContext];
completion(controller);
}];
}
Best Answer-推荐答案 strong>
您不需要将 NSFetchedResultsController 的创建包装在 MagicalRecord 的 saveWithBlock: 周围,因为您实际上只是在获取对象,不改变它们。
我明白你为什么这样做(为了获得一个本地 NSManagedObjectContext )
MagicalRecord 有一个方便的方法,不需要你传递 NSManagedObjectContext :
+ (NSFetchedResultsController *) MR_fetchAllGroupedByNSString *)group withPredicateNSPredicate *)searchTerm sortedByNSString *)sortTerm ascendingBOOL)ascending;
这将使用您在执行期间所在的当前线程的上下文,因此,如果您没有做任何太复杂的事情,例如在线程之间切换和管理不同的上下文,您应该可以使用它。
这样,您的方法应该能够立即返回 NSFetchedResultsController ,而无需使用 block 。
此外,您似乎设置了两次 delegate ,一次在 block 内,一次作为参数传递给 MR_fetchAllGroupedBy:..
最后,确保您新创建的 NSFetchedResultsController 不是 nil ,并在与您的 delegate 方法之一>viewWillAppear:,然后使用断点/日志查看是否被调用:
- (void)controllerDidChangeContentNSFetchedResultsController *)controller
{
NSLog(@"objects: %@", controller.fetchedObjects);
}
关于ios - NSFetchedResultsControllerDelegate 方法不会被调用,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37593830/
|