我有一个collectionView。每个单元格都包含按钮actionButton
以删除它们。按钮具有方法removeItem
以通过附加目标移除它们。我有一个数组datas
包含要收集的项目。
override func collectionView(_ collectionView: UICollectionView, willDisplay cell: UICollectionViewCell, forItemAt indexPath: IndexPath) {
super.collectionView(collectionView, willDisplay: cell, forItemAt: indexPath)
guard let cell = cell as? ViewCell else { return }
let index = indexPath.row % datas.count
let item = datas[index]
cell.item = item
cell.actionButton.tag = indexPath.item
cell.actionButton.addTarget(self, action: #selector(removeItem), for: .touchUpInside)
}
我有一种从集合视图中删除项目的方法。
@objc func removeItem(sender: UIButton) {
let indexPath = IndexPath.init(item: sender.tag, section: 0)
self.datas.remove(at: indexPath.item)
collectionView?.deleteItems(at: [indexPath])
}
但是从收集单元格删除项目按钮索引后没有重新加载。例如,如果我删除索引为[0,0]的第一项,则下一个(第二个)项目变为1-st但它的按钮索引仍为[0,1]。
我做错了什么以及为什么按钮索引不会重新排列?
答案 0 :(得分:2)
永远不要使用标记来跟踪单元格的索引路径(在集合视图或表视图中)。正如您所见,当您可以插入,删除或重新排序单元格时,它会失败。
正确的解决方案是根据集合视图中按钮的位置获取单元格的索引路径。
@objc func removeItem(sender: UIButton) {
if let collectionView = collectionView {
let point = sender.convert(.zero, to: collectionView)
if let indexPath = collectionView.indexPathForItem(at: point) {
self.datas.remove(at: indexPath.item)
collectionView.deleteItems(at: [indexPath])
}
}
}