gpt4 book ai didi

ios - Collection View 完成处理程序的 PerformBatchUpdates 未执行

转载 作者:行者123 更新时间:2023-11-29 05:17:18 29 4
gpt4 key购买 nike

我目前遇到的有趣问题。在 UICollectionView 实例上调用 PerformBatchUpdates 方法时,某些情况会导致完成处理程序无法执行。

collectionView.performBatchUpdates({
collectionView.insertItems(at: indexPaths)
}) { _ in
if self.delegate.responds(to: #selector(self.delegate.sectionNeedsToBeHidden)) {
self.delegate.sectionNeedsToBeHidden?()
}
}
}

当向 Collection View 执行插入操作时,不会调用完成处理程序。但是,当执行相同的逻辑时,除了将 collectionView.insertItems(at: indexPaths) 行更改为 collectionView.deleteItems(at: indexPaths) 时,将调用完成处理程序。我目前对发生这种情况的猜测与 Collection View 的先前状态有关,因此它只是在删除时注册对数据源的更改,从而导致调用完成处理程序。然而,该解决方案并不确定为什么仅在删除项目而不是插入项目时调用 performBatchUpdatescompletionHandler。如果有人对这个确切的问题或一般的 performBatchUpdates 工作方式有任何见解,我将不胜感激

最佳答案

每当您插入一行或从 Collection View 中删除一个项目时,您都必须更新许多项目数据,如下面的代码

func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return self.myItems.count
}

self.myItems.count 需要先更新。因此,首先更新您的项目计数,然后执行批量更新。

关于ios - Collection View 完成处理程序的 PerformBatchUpdates 未执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59062641/

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