我有一个应用程序使用 Core Data 来驱动一个UITableView
with 部分。它使用所有示例项目使用的标准NSFetchedResultsControllerDelegate
实现。但是,偶尔(但不可靠)调用[self.tableView endUpdates]
会引发以下异常:
CoreData: error: Serious application error. An exception was caught from the delegate of NSFetchedResultsController during a call to -controllerDidChangeContent:. attempt to insert row 3 into section 1, but there are only 3 rows in section 1 after the update with userInfo (null)
之后,表格视图只有当时可见的单元格和其他地方的空白空间(但仍可滚动)。没有什么可以解决它,但重新启动应用程序。我确信应用程序会崩溃,除非它NSFetchedResultsController
正在捕获异常。
应用程序重新启动后,导致回调的数据立即出现。果然,第 1 节中只有 3 行(或任何例外情况)。那么为什么Core Data会告诉我插入一个不存在的行呢?
- (void)reloadFetch
{
NSError *error = nil;
if (![self.fetchedResultsController performFetch:&error]) {
TULogError(@"Unresolved error %@, %@", error, [error userInfo]);
[[TCCacheController sharedController] clearData];
}
[self.tableView reloadData];
}
- (NSFetchedResultsController *)fetchedResultsController
{
if (_fetchedResultsController == nil) {
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"FeedItem"];
fetchRequest.fetchBatchSize = 20;
fetchRequest.predicate = [NSPredicate predicateWithFormat:@"city = %@", [TCCity currentCity]];
fetchRequest.sortDescriptors = @[ [NSSortDescriptor sortDescriptorWithKey:@"updatedAt" ascending:NO] ];
fetchRequest.relationshipKeyPathsForPrefetching = @[
@"user",
@"responses",
];
_fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest
managedObjectContext:[TCCacheController sharedController].mainContext
sectionNameKeyPath:@"day"
cacheName:nil];
_fetchedResultsController.delegate = self;
[self reloadFetch];
}
return _fetchedResultsController;
}
- (void)controllerWillChangeContent:(NSFetchedResultsController *)controller
{
[self.tableView beginUpdates];
}
- (void)controller:(NSFetchedResultsController *)controller
didChangeSection:(id <NSFetchedResultsSectionInfo>)sectionInfo
atIndex:(NSUInteger)sectionIndex
forChangeType:(NSFetchedResultsChangeType)type
{
switch(type) {
case NSFetchedResultsChangeInsert:
[self.tableView insertSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
break;
case NSFetchedResultsChangeDelete:
[self.tableView deleteSections:[NSIndexSet indexSetWithIndex:sectionIndex] withRowAnimation:UITableViewRowAnimationFade];
break;
}
}
- (void)controller:(NSFetchedResultsController *)controller
didChangeObject:(id)anObject
atIndexPath:(NSIndexPath *)indexPath
forChangeType:(NSFetchedResultsChangeType)type
newIndexPath:(NSIndexPath *)newIndexPath
{
switch(type) {
case NSFetchedResultsChangeInsert: {
[self.tableView insertRowsAtIndexPaths:@[newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
} case NSFetchedResultsChangeDelete: {
[self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
} case NSFetchedResultsChangeUpdate: {
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
} case NSFetchedResultsChangeMove: {
[self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
[self.tableView insertRowsAtIndexPaths:@[newIndexPath] withRowAnimation:UITableViewRowAnimationFade];
break;
}
}
}
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller
{
[self.tableView endUpdates];
}