NSFetchedResultsController 更改更新 - 集合视图

Posted

技术标签:

【中文标题】NSFetchedResultsController 更改更新 - 集合视图【英文标题】:NSFetchedResultsController Change Update - Collection View 【发布时间】:2013-09-02 23:38:54 【问题描述】:

我有一个 CollectionView,当我编辑现有单元格时

    case NSFetchedResultsChangeUpdate: 

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

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

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

【问题讨论】:

提供触发更改通知的编辑的更多详细信息。 【参考方案1】:

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

- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller

    [self.collectionView reloadData];

【讨论】:

以上是关于NSFetchedResultsController 更改更新 - 集合视图的主要内容,如果未能解决你的问题,请参考以下文章

在 Core Data 应用程序中调用 performFetch 后,是不是需要手动更新表视图?