NSFetchedResultsController更新更新 - 集合视图

时间:2013-09-02 23:38:54

标签: ios collections nsfetchedresultscontroller reloaddata

我有一个集合视图,当我编辑现有单元格时

    case NSFetchedResultsChangeUpdate: {

        NSLog(@"change update");
        [self.collectionView reloadData];
    }

除非我滚动/或向后导航,否则单元格不会更新。

正在调用更改更新,如日志中所示

1 个答案:

答案 0 :(得分:0)

这个方法是我需要实现的。

- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller
{
    [self.collectionView reloadData];
}