Aziz L

Results 7 comments of Aziz L

this is related to http://stackoverflow.com/questions/12611292/uicollectionview-assertion-failure

but quick fix would not work, because ``` objc case NSFetchedResultsChangeInsert: { if ([self.collectionView numberOfSections] > 0) { if ([self.collectionView numberOfItemsInSection:indexPath.section] == 0) { self.shouldReloadCollectionView = YES; } else {...

@sss55sss55sss may be your problem may be solved as there http://stackoverflow.com/questions/12611292/uicollectionview-assertion-failure

This actually helped me (see https://forums.developer.apple.com/thread/86703) ``` self.tableView.estimatedRowHeight = 0; self.tableView.estimatedSectionHeaderHeight = 0; self.tableView.estimatedSectionFooterHeight = 0; ```

I'm using `Latest commit d39a59e on May 3, 2015` on iPhone 6+ and have no such problems.