- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用 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/
我正在尝试将一个文件从一个 URL 移动到另一个,但是我收到一个错误代码 513 .我知道这是 NSFileWriteNoPermissionError .考虑到我首先创建了文件夹,我看不出这怎么可能
我正在使用 FileManager 在我的应用程序中编辑、移动和删除文件。但是如何确定方法 moveItem 已完成?有回调的可能吗?我阅读了一些有关 FileManagerDelegate 的内容,
我一直在使用以下代码从我的 Android 应用程序的播放列表中删除一个项目: private void removeFromPlaylist(long playlistId, int loc) {
我需要使用 moveItem(at:to:) 委托(delegate)方法来移动我的 Collection View 单元格。当我实现数据源委托(delegate)方法时它工作正常,但我需要将我的数据
我正在 Hook 函数,即 IFileOperation::CopyItems 来实现文件复制监视。我的代码在 windows-7 32 位机器上运行完美,但在 windows-7 64 位机器上崩溃
我想将文件从文档/收件箱移动到内部应用程序。我已经写在下面了。但有些不对劲。 class FileListViewController: UITableViewController { class f
我是一名优秀的程序员,十分优秀!