Skip to content

Instantly share code, notes, and snippets.

@icanswiftabit
Created November 16, 2017 10:32
Show Gist options
  • Save icanswiftabit/1b98a3519438036fb9422340405e2e08 to your computer and use it in GitHub Desktop.
Save icanswiftabit/1b98a3519438036fb9422340405e2e08 to your computer and use it in GitHub Desktop.
coordinator.session.loadObjects(ofClass: Cat.self) { cats in
collectionView.performBatchUpdates {
for cat in cats as! [Cat] {
self.viewModel.cats.insert(cat, at: destinationIndexPath.row)
}
collectionView.reloadSections(IndexSet(integer: destinationIndexPath.section))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment