I have table with a NSFetchedResultsController datasource and delegate. I have another view controller (only for displaying detail) which can be pushed from the table. However, when the vc is pushed, a call to the NSFetchedResultsController "...didChangeObject" method is received for the "update" type. However, the vc being pushed does not modify, add to or remove from the underlying managed objects or their relationships.
- Is there any way I can determine which attribute/property change is triggering the update?
- What besides an update, deletion or edit can trigger the NSFetchedResultsController delegate method in question?
Thank you