Skip to content

Instantly share code, notes, and snippets.

@phongsakornp
Last active July 10, 2024 00:17
Show Gist options
  • Save phongsakornp/4870b46a9ba4208e5ff0 to your computer and use it in GitHub Desktop.
Save phongsakornp/4870b46a9ba4208e5ff0 to your computer and use it in GitHub Desktop.
#swift, `Reload CollectionView With Smooth Animation`
// Reload data with animation.
// http://stackoverflow.com/a/15165733
self.collectionView.performBatchUpdates(
{
self.collectionView.reloadSections(NSIndexSet(index: 0))
}, completion: { (finished:Bool) -> Void in
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment