Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UICollectionView received layout attributes for a cell in ios 7

I'm using custom UICollectionView on my app. However, I have a problem that make my app crash. The log for the crash:
Note: This bug doesn't occur on iOS 8

2015-05-29 11:49:26.316 app9to5[1834:607] Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'UICollectionView recieved layout attributes for a cell with an index path that does not exist: <NSIndexPath: 0x7fca0e00> {length = 2, path
= 0 - 14}'

> First throw call stack: (  
       CoreFoundation                      0x039b61e4 __exceptionPreprocess + 180  
       libobjc.A.dylib                     0x036808e5 objc_exception_throw + 44  
       CoreFoundation                      0x039b6048 +[NSException raise:format:arguments:] + 136  
       Foundation                          0x016954de -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 116  
       UIKit                               0x02be0866 __45-[UICollectionViewData validateLayoutInRect:]_block_invoke + 1793  
       UIKit                               0x02bdfaed -[UICollectionViewData validateLayoutInRect:] + 1376  
       UIKit                               0x02ba5603 -[UICollectionView layoutSubviews] + 173  
       UIKit                               0x025c8964 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 355  
       libobjc.A.dylib

Please help me to resolve. Thank you so much!

like image 959
Cuong Nguyen Avatar asked Feb 11 '23 00:02

Cuong Nguyen


2 Answers

You should try this:

In -(NSArray*)layoutAttributesForElementsInRect:(CGRect)rect you put this:

for(NSInteger i=0 ; i < self.collectionView.numberOfSections; i++) {
    for (NSInteger j=0 ; j < [self.collectionView numberOfItemsInSection:i]; j++) {
        NSIndexPath* indexPath = [NSIndexPath indexPathForItem:j inSection:i];
        [attributes addObject:[self layoutAttributesForItemAtIndexPath:indexPath]];
    }
}

Hope this could help.

like image 156
Nghia Luong Avatar answered May 07 '23 14:05

Nghia Luong


Try invalidating the layout before you call reloadData on collection View.

[self.collectionView.collectionViewLayout invalidateLayout];
[self.collectionView reloadData];
like image 33
Sahana Kini Avatar answered May 07 '23 16:05

Sahana Kini