如何在更改`UICollectionViewCell`位置时正确移动数组项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在更改`UICollectionViewCell`位置时正确移动数组项相关的知识,希望对你有一定的参考价值。
我有一个UICollectionView
,用户可以在查看每个Swift拖放页面后更改单元格的位置。我决定使用一种方法来更新字符串数组,以跟踪此函数中的集合视图:
func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
let positionPreviouslyHoldingTheSelectedIndex = list[sourceIndexPath.item]
// put the select index in the intended destination index
list[sourceIndexPath.item] = list[destinationIndexPath.item]
// put the cell/index of the destination index in the selected positions old index
list[destinationIndexPath.item] = positionPreviouslyHoldingTheSelectedIndex
}
但是上面的代码按预期更新了数组并且它变得很奇怪,一旦调用moveItemAt
我将如何更新数组/列表。
答案
有2个IndexPath
s,你必须从sourceIndexPath
摆脱数组元素并将其添加到destinationIndexPath
,如下:
let item = list.remove(at: sourceIndexPath.item)
list.insert(item, at: destinationIndexPath.item)
以上是关于如何在更改`UICollectionViewCell`位置时正确移动数组项的主要内容,如果未能解决你的问题,请参考以下文章
如何以编程方式创建 UICollectionViewCell
如何从 UICollectionViewCell 访问 UICollectionView 中 Cell 的 indexPath
Xcode 6 beta 4,UIButton 在collectionviewcell 中不负责