我有一个集合视图,当我编辑现有单元格时
case NSFetchedResultsChangeUpdate: {
NSLog(@"change update");
[self.collectionView reloadData];
}
除非我滚动/或向后导航,否则单元格不会更新。
正在调用更改更新,如日志中所示
答案 0 :(得分:0)
这个方法是我需要实现的。
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller
{
[self.collectionView reloadData];
}