LoginSignup
7
6

More than 5 years have passed since last update.

CoreData利用時のUITableViewの更新

Posted at

どうやら内部でキャッシュしているようなので、自分の場合にはこんな感じでキャッシュを消してperformFetchする事で解消した。

-(BOOL)reload:(NSError**) error {
    [NSFetchedResultsController deleteCacheWithName:CACHE_NAME];
    return [self.fetchedResultsController performFetch:error];
}

参考
http://stackoverflow.com/questions/3399012/nsfetchedresultscontroller-refresh-refetch

7
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
6