我正在使用集合视图,并希望在用户平移时移动单元格。这是代码。

func longPressPhotoCollectionView(sender: UILongPressGestureRecognizer) {
    guard isEditing else {
        return
    }
    let point = sender.location(in: photoCollectionView)
    switch sender.state {
    case .began:
        guard let indexPath = photoCollectionView.indexPathForItem(at: point) else {
            return
        }
        let isS = photoCollectionView.beginInteractiveMovementForItem(at: indexPath)
        print(isS)
    case .changed:
        photoCollectionView.updateInteractiveMovementTargetPosition(point)
    case .ended:
        photoCollectionView.endInteractiveMovement()
    default:
        photoCollectionView.cancelInteractiveMovement()
    }
}

我怀疑自定义布局会导致此问题。我是从Apple的Doc找到的。

当您调用此方法时,集合视图将咨询其委托以确保可以移动该项目。如果数据源不支持项目的移动,则此方法返回false。

我不知道如何处理动画,尤其是自定义布局。请帮我!谢谢!

最佳答案

在您的UICollectionViewDataSource中实现以下内容:

func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {

    print("MOVING!")
    // Switch the Items in the DataSource
}

10-08 05:30