CollectionView中第一个元素的IndexPath

时间:2016-11-28 15:03:45

标签: ios

如何在CollectionView中查看IndexPath作为第一个位置?我需要将某个元素移动到第一个位置:

collectionView.moveItem(at: collectionView.indexPath(for: cell)!,
                                        to: *????*))

1 个答案:

答案 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))