I'm using NSfetchedResultsController.
I need to send an update to CloudKit when all controllerDidChangeContent
methods finished.
In my case controllerDidChangeContent
method called several times, because I receive updates of every record in my tableView from CloudKit, so if I put a call to cloudKit update in controllerDidChangeContent
, it is called for every row update. It is bad.
Is it possible to detect when controllerDidChangeContent finished all updates and put my CloudKit Send message inside?
Or maybe there is another method for this?