I’m using refreshObject:mergeChanges: to refresh a single cell in my Core Data tableView by getting the indexPath for that cell. Is it possible to refresh the entire tableView instead of that single cell? I’ve only found that refreshObject:mergeChanges: works for what I need to do.
I’m using refreshObject:mergeChanges: to refresh a single cell in my Core Data tableView by
Share
Just refetch your data.
There is a property,
setShouldRefreshRefetchedObjectsthat ensures fetch requests go down to the store.setShouldRefreshRefetchedObjects:
Sets whether the fetch request should cause property values of fetched objects to be updated with the current values in the persistent store.