简体   繁体   中英

dequeueReusableSupplementaryViewOfKind crash on ios 7.1 - index 0 beyond bounds for empty array

having a collection view with 2 sections.

section 1:
rows: 0


section 2:
rows: 20

having registerednibs like:

[self.collectionView registerNib:[UINib nibWithNibName:@"MissionDetailHeader" bundle:nil] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"MissionDetailHeader"];
[self.collectionView registerNib:[UINib nibWithNibName:@"MissionDetailHeaderPic" bundle:nil] forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"MissionDetailHeaderPic"];

works perfect on ios8 - but on 7.1 it always crashes at dequeueReusableSupplementaryViewOfKind :

- (UICollectionReusableView*)collectionView:(UICollectionView*)cv viewForSupplementaryElementOfKind:(NSString*)kind atIndexPath:(NSIndexPath*)indexPath {

    UICollectionReusableView* header;

    NSLog(@"LOAD SECT: %@", indexPath);
    if (indexPath.section == 0) {

        header = [collectionView dequeueReusableSupplementaryViewOfKind:kind
                                                                              withReuseIdentifier:@"MissionDetailHeaderPic"
                                                                                     forIndexPath:indexPath];

    } else {
        header = [collectionView dequeueReusableSupplementaryViewOfKind:kind
                                                    withReuseIdentifier:@"MissionDetailHeader"
                                                           forIndexPath:indexPath];
    }
    return header;
}

Stacktrace:

*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 0 beyond bounds for empty array'
*** First throw call stack:
(
    0   CoreFoundation                      0x047c61e4 __exceptionPreprocess + 180
    1   libobjc.A.dylib                     0x009f98e5 objc_exception_throw + 44
    2   CoreFoundation                      0x047673f6 -[__NSArrayM objectAtIndex:] + 246
    3   UIKit                               0x03d18750 -[UICollectionViewFlowLayout(Internal) _frameForHeaderInSection:usingData:] + 61
    4   UIKit                               0x03d14afa -[UICollectionViewFlowLayout layoutAttributesForHeaderInSection:usingData:] + 61
    5   UIKit                               0x03d15687 -[UICollectionViewFlowLayout layoutAttributesForSupplementaryViewOfKind:atIndexPath:] + 192
    6   UIKit                               0x03d2f02a -[UICollectionViewData layoutAttributesForSupplementaryElementOfKind:atIndexPath:] + 363
    7   UIKit                               0x03cf9764 -[UICollectionView _dequeueReusableViewOfKind:withIdentifier:forIndexPath:viewCategory:] + 242
    8   UIKit                               0x03cfa00a -[UICollectionView dequeueReusableSupplementaryViewOfKind:withReuseIdentifier:forIndexPath:] + 239
    9   fivexfive                           0x00102e33 -[MissionDetailViewController collectionView:viewForSupplementaryElementOfKind:atIndexPath:] + 243
    10  UIKit                               0x03cec099 -[UICollectionView _createPreparedSupplementaryViewForElementOfKind:atIndexPath:withLayoutAttributes:applyAttributes:] + 480
    11  UIKit                               0x03ced775 -[UICollectionView _updateVisibleCellsNow:] + 4730
    12  UIKit                               0x03cf165f -[UICollectionView layoutSubviews] + 265
    13  UIKit                               0x03714964 -[UIView(CALayerDelegate) layoutSublayersOfLayer:] + 355
    14  libobjc.A.dylib                     0x00a0b82b -[NSObject performSelector:withObject:] + 70
    15  QuartzCore                          0x0342b45a -[CALayer layoutSublayers] + 148
    16  QuartzCore                          0x0341f244 _ZN2CA5Layer16layout_if_neededEPNS_11TransactionE + 380

already searched around SO and googled like hell - cannot find any hint/tip how to trace down the error.

regards helmut

ok answer myself :D

removing

 [self.stretchyLayout setSectionInset:UIEdgeInsetsMake(8, 8, 0, 8)];

all calls to setSectionInset - fixed it on ios7

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM