我有自定义CollectionView
单元格,点击按钮我正在调用closure
,这是在cellForItem
下实现
下面是代码
cell.closeImageTappped = { [weak self] cell in
guard let strongSelf = self else {
return
}
if let objectFirst = strongSelf.selectedFiles.first(where: {$0.fileCategory == cell.currentSelectedCellType && $0.fileName == cell.currentObject?.fileName}) {
cell.imgPicture.image = nil
cell.imgPlusPlaceHolder.isHidden = false
objectFirst.removeImageFromDocumentDirectory()
strongSelf.selectedFiles.remove(at: strongSelf.selectedFiles.index(where: {$0.fileName == objectFirst.fileName})!)
strongSelf.arraySource[indexPath.section].rows.remove(at: indexPath.row)
strongSelf.collectionViewSelectFile.performBatchUpdates({
strongSelf.collectionViewSelectFile.deleteItems(at: [indexPath])
}, completion: nil)
}
}
在某些情况下应用程序崩溃,例如如果我按关闭多个单元格的速度太快
在这里崩溃
strongSelf.arraySource[indexPath.section].rows.remove(at: indexPath.row)
致命错误:索引超出范围
当我检查行时
▿ 11 元素 - 0 : 0 - 1 : 1 - 2 : 2 - 3 : 3 - 4 : 4 - 5 : 5 - 6 : 6 - 7 : 7 - 8 : 8 - 9 : 8 - 10 : 8
虽然索引路径是
po indexPath
▿ 2 elements
- 0 : 0
- 1 : 11
如果我得到这样的索引路径,它会向我显示正确的索引路径
self?.collectionViewSelectFile.indexPath(for: cell)
▿ Optional<IndexPath>
▿ some : 2 elements
- 0 : 0
- 1 : 9
但是为什么IndexPath
是不同的,那么self?.collectionViewSelectFile.indexPath(for: cell)
indexPath
来自闭包外部,因此在将闭包分配给单元格时捕获其值。 假设您的数组中有 10 个项目,并且您删除了第 9 个项目。 您的数组现在有 9 个项目,但显示第 10 个项目的单元格(但现在是第 9 个项目 - 数组中的索引 8)仍然有 9 个表示 indexPath.row
,而不是 8,因此当您尝试删除最后一行时会出现数组边界冲突。
为避免此问题,您可以在闭包内的集合视图上使用indexPath(for:)
以确定单元格的当前indexPath
:
cell.closeImageTappped = { [weak self] cell in
guard let strongSelf = self else {
return
}
if let objectFirst = strongSelf.selectedFiles.first(where: {$0.fileCategory == cell.currentSelectedCellType && $0.fileName == cell.currentObject?.fileName}),
let indexPath = collectionView.indexPath(for: cell) {
cell.imgPicture.image = nil
cell.imgPlusPlaceHolder.isHidden = false
objectFirst.removeImageFromDocumentDirectory()
strongSelf.selectedFiles.remove(at: strongSelf.selectedFiles.index(where: {$0.fileName == objectFirst.fileName})!)
strongSelf.arraySource[indexPath.section].rows.remove(at: indexPath.row)
strongSelf.collectionViewSelectFile.performBatchUpdates({
strongSelf.collectionViewSelectFile.deleteItems(at: [indexPath])
}, completion: nil)
}
}