gpt4 book ai didi

ios - UICollectionView 在 ios 7 中接收到单元格的布局属性

转载 作者:可可西里 更新时间:2023-11-01 05:11:44 25 4
gpt4 key购买 nike

我在我的应用程序上使用自定义 UICollectionView。但是,我有一个问题导致我的应用程序崩溃。崩溃日志:
注意:此错误不会出现在 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

请帮我解决。非常感谢!

最佳答案

你应该试试这个:

-(NSArray*)layoutAttributesForElementsInRect:(CGRect)rect 你把这个:

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]];
}
}

希望这对您有所帮助。

关于ios - UICollectionView 在 ios 7 中接收到单元格的布局属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30523728/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com