problem with insertItemsAtIndexPaths
I started to implemented pagination in my collection view today. I fetched the objects from parse and tried calling insertItemsAtIndexPaths() and blame!, i get an assertion failure... Error: * Assertion failure in -[UICollectionView _endItemAnimations], /SourceCache/UIKit/UIKit-2903.2/UICollectionView.m:3716 It turns out, the assertion error didn't provide enough details. I implemented @try { [self.collectionView insertItemsAtIndexPaths:indexPaths]; } @catch (NSException *except) { NSLog(@"DEBUG: failure to insertItemsAtIndexPaths. %@", except.description); } And sure enough, I found a simple indexing error when building indexPaths for the new objects.











