OStack程序员社区-中国程序员成长平台

标题: ios - 删除 Collection View 单元格时应用程序崩溃 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 10:57
标题: ios - 删除 Collection View 单元格时应用程序崩溃

我已启用 Collection View 的多选。(Xcode 7,iOS 9)

 NSArray *paths = [self.collectionView indexPathsForSelectedItems];

// data source
 for (NSIndexPath *path in paths) {
   [datasourceArray removeObjectAtIndex:path.item];
  }

// delete 
 [self.collectionView deleteItemsAtIndexPaths:paths];

我有 9 件商品。它与此消息一起崩溃:

reason: '*** -[__NSArrayM removeObjectAtIndex:]: index 8 beyond bounds [0 .. 7]'

但如果你只删除最后一个 (8),它就可以正常工作。 enter image description here



Best Answer-推荐答案


想想当你删除一个元素时数组会发生什么 - 上面的所有元素都从 1 开始,所以元素 8 现在是元素 7,元素 7 现在是元素 6,依此类推。所以当你删除元素 6 时,不再有元素 9,所以你会得到一个越界异常。

您可以使用 removeObjectsAtIndexes: 方法,而不是在循环中调用 removeObjectAtIndex -

NSArray *paths = [self.collectionView indexPathsForSelectedItems];

NSMutableIndexSet removeIndexes=[NSMutableIndexSet new];

for (NSIndexPath *path in paths) {
    [removeIndexes addIndex:path.item];
}

// delete 
[datasourceArray removeObjectAtIndexes:removeIndexes];
[self.collectionView deleteItemsAtIndexPaths:paths];

关于ios - 删除 Collection View 单元格时应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32678368/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4