gpt4 book ai didi

ios - 处理 moveItem(在 :to:) delegate method when using UICollectionViewDiffableDataSource

转载 作者:行者123 更新时间:2023-12-05 02:56:18 25 4
gpt4 key购买 nike

我需要使用 moveItem(at:to:) 委托(delegate)方法来移动我的 Collection View 单元格。当我实现数据源委托(delegate)方法时它工作正常,但我需要将我的数据源设置为 UICollectionViewDiffableDataSource 并且这样 moveItem(at:to:) 没有称呼。任何解决方案来处理,

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


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 的子类并覆盖其中的方法。

关于ios - 处理 moveItem(在 :to:) delegate method when using UICollectionViewDiffableDataSource,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60611991/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com