簡體   English   中英

iOS 7.1上的dequeueReusableSupplementaryViewOfKind崩潰-空數組的索引0超出范圍

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

具有2個部分的集合視圖。

section 1:
rows: 0


section 2:
rows: 20

像這樣的注冊筆尖:

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

在ios8上可以完美工作-但在7.1上,它總是在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;
}

堆棧跟蹤:

*** 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

已經在SO周圍搜索並像地獄一樣搜索-找不到任何提示/技巧來跟蹤錯誤。

問候赫爾穆特

好的,我自己回答:D

去除

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

對setSectionInset的所有調用-在ios7上已修復

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM