使用 UICollectionViewDiffableDataSource 时处理 moveItem(at:to:) 委托方法

Handle moveItem(at:to:) delegate method when using UICollectionViewDiffableDataSource

我需要使用 moveItem(at:to:) 委托方法来移动我的集合视图单元格。 当我实现数据源委托方法时,它工作正常,但我需要将我的数据源设置为 UICollectionViewDiffableDataSource,这样 moveItem(at:to:) 就不会调用。 要处理的任何解决方案,

这种方式在使用委托时是有效的:


override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
       return 10
}

override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! CustomCell
        cell.textLabel.text = "Some value"
        return cell
}

override func collectionView(_ collectionView: UICollectionView, canMoveItemAt indexPath: IndexPath) -> Bool {
        true
}

override func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
        print("OK")
}

以这种方式设置数据源是行不通的


func setupDataSource() {
        dataSource = UICollectionViewDiffableDataSource<Section, Person>(collectionView: collectionView, cellProvider: {
            (collectionView: UICollectionView, indexPath: IndexPath, person: Person) -> UICollectionViewCell? in
            let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! CustomCell
            cell.textLabel.text = "Some text"
            return cell
        })
    }

对于自定义行为,创建 UICollectionViewDiffableDataSource 的子类并覆盖其中的方法。