我注意到iOS7(坏 - 崩溃)和 iOS8(好)performBatchUpdates:completion:
的工作方法有一个奇怪的区别。UICollectionView
这是我使用的代码:
[self.swapItems removeObject:self.swapItems[indexPath.row]];
[self.swapItemsGrid performBatchUpdates:^{
[self.swapItemsGrid deleteItemsAtIndexPaths:@[indexPath]];
} completion:^(BOOL finished) {
[self layoutViews];
}];
在 iOS8 中它工作正常,而在 iOS7 中它崩溃并出现以下错误:
Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]'
一点调试表明,在 iOS8 中该performBatchUpdates:completion:
方法调用数据源方法collectionView:numberOfItemsInSection:
,而在 iOS7 中则没有,因此尝试使用数据数组中的对象的数据创建单元格的错误不再存在。
有没有其他人遇到过这个问题?也许你有一个解决方案?