如何在CollectionView中查看IndexPath作为第一个位置?我需要将某个元素移动到第一个位置:
collectionView.moveItem(at: collectionView.indexPath(for: cell)!,
to: *????*))
答案 0 :(得分:0)
使用IndexPath(item: Int, section: Int)
。在这种情况下,它将是
IndexPath(item: 0, section: 0)
您甚至可以将zero
静态变量定义为CGRect
,其他人正在执行
extension IndexPath {
static let zero = IndexPath(item: 0, section: 0)
}
并将其用作
collectionView.moveItem(at: collectionView.indexPath(for: cell)!, to: .zero))