I'm getting this error in my app:
*** Assertion failure in -[UICollectionView _endItemAnimations]
, /SourceCache/UIKit/UIKit-2372/UICollectionView.m:2801
It happens in my -controllerDidChangeContent:
method on this line:
[self.collectionView performBatchUpdates:^{...}];
Does anyone know what causes this? My code is closely based off of https://gist.github.com/4440c1cba83318e276bb and I'm at a loss.
Thanks!