I have an activity indicator in a cell. Updating cells withNSFetchedResultsController
func controller(controller: NSFetchedResultsController, didChangeObject anObject: AnyObject, atIndexPath indexPath: NSIndexPath?, forChangeType type: NSFetchedResultsChangeType, newIndexPath: NSIndexPath?) {
switch type {
case .Update:
if let _indexPath = indexPath {
self.tableView.reloadRowsAtIndexPaths([_indexPath], withRowAnimation: .None)
}
}
My problem is that after the reboot line, the state of the activity indicator is again set to 0, and the animation looks jerky.

Is it possible to somehow save the state of the indicator or not to restart it ...
source
share