iOS8.4. On device not simulator.
I'm getting this carsh error;
Assertion failure in -[UICollectionView _updateWithItems:tentativelyForReordering:], /SourceCache/UIKit/UIKit-3347.44.2/UICollectionView.m:4563
When I call
NSArray* array_indexPaths = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:1 inSection:0]];
[self.collectionView reloadItemsAtIndexPaths:indexPaths];
have tried putting the above inside
[self.collectionView performBatchUpdates:^{
with no luck.
Is there anyone else who has experienced this or knows why it's happening?