Created
December 8, 2017 09:55
-
-
Save oliverbarreto/1873f89918c7c78ca5dbd4e6875321ad to your computer and use it in GitHub Desktop.
FetchedResultsCollectionViewController
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import CoreData | |
class FetchedResultsCollectionViewController: UICollectionViewController, NSFetchedResultsControllerDelegate { | |
private var sectionChanges = [(type: NSFetchedResultsChangeType, sectionIndex: Int)]() | |
private var itemChanges = [(type: NSFetchedResultsChangeType, indexPath: IndexPath?, newIndexPath: IndexPath?)]() | |
func controller(_ controller: NSFetchedResultsController<NSFetchRequestResult>, didChange sectionInfo: NSFetchedResultsSectionInfo, atSectionIndex sectionIndex: Int, for type: NSFetchedResultsChangeType) { | |
sectionChanges.append((type, sectionIndex)) | |
} | |
func controller(_ controller: NSFetchedResultsController<NSFetchRequestResult>, didChange anObject: Any, at indexPath: IndexPath?, for type: NSFetchedResultsChangeType, newIndexPath: IndexPath?) | |
{ | |
itemChanges.append((type, indexPath, newIndexPath)) | |
} | |
func controllerDidChangeContent(_ controller: NSFetchedResultsController<NSFetchRequestResult>) | |
{ | |
collectionView?.performBatchUpdates({ | |
for change in self.sectionChanges { | |
switch change.type { | |
case .insert: self.collectionView?.insertSections([change.sectionIndex]) | |
case .delete: self.collectionView?.deleteSections([change.sectionIndex]) | |
default: break | |
} | |
} | |
for change in self.itemChanges { | |
switch change.type { | |
case .insert: self.collectionView?.insertItems(at: [change.newIndexPath!]) | |
case .delete: self.collectionView?.deleteItems(at: [change.indexPath!]) | |
case .update: self.collectionView?.reloadItems(at: [change.indexPath!]) | |
case .move: | |
self.collectionView?.deleteItems(at: [change.indexPath!]) | |
self.collectionView?.insertItems(at: [change.newIndexPath!]) | |
} | |
} | |
}, completion: { finished in | |
self.sectionChanges.removeAll() | |
self.itemChanges.removeAll() | |
}) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment