8

我目前在 iOS 11 中使用UIDragInteractionUIDropInteraction提供了一个简单的拖放功能,用户可以将 UIImageView 拖到 UIView 上。

我意识到一个不直观的因素是UIDragInteraction需要至少一秒钟的长按才能工作。我想知道是否有办法缩短长按时间?Apple上的文档似乎没有强调这一点。

谢谢!

实现粘贴在下面以供参考:

class ViewController: UIViewController {

    @IBOutlet var imageView: UIImageView!
    @IBOutlet var dropArea: UIImageView!

    override func viewDidLoad() {
        super.viewDidLoad()

        let dragInteraction = UIDragInteraction(delegate: self)
        imageView.addInteraction(dragInteraction)
        dragInteraction.isEnabled = true
        let dropInteraction = UIDropInteraction(delegate: self)
        dropArea.addInteraction(dropInteraction)
    }
}

extension ViewController: UIDragInteractionDelegate {
    func dragInteraction(_ interaction: UIDragInteraction, itemsForBeginning session: UIDragSession) -> [UIDragItem] {
        guard let image = imageView.image
            else { return [] }

        let itemProvider = NSItemProvider(object: image)
        return [UIDragItem(itemProvider: itemProvider)]
    }
}

extension ViewController: UIDropInteractionDelegate {
    func dropInteraction(_ interaction: UIDropInteraction, sessionDidUpdate session: UIDropSession) -> UIDropProposal {
        return UIDropProposal(operation: .copy)
    }

    func dropInteraction(_ interaction: UIDropInteraction, performDrop session: UIDropSession) {
        guard let itemProvider = session.items.first?.itemProvider,
            itemProvider.canLoadObject(ofClass: UIImage.self)
            else { return }

        itemProvider.loadObject(ofClass: UIImage.self) { [weak self] loadedItem, error in
            guard let image = loadedItem as? UIImage
                else { return }

            DispatchQueue.main.async {
                self?.dropArea.image = image
            }
        }
    }
}
4

2 回答 2

11

没有明显的方法可以做到这一点,但我只是面临同样的问题,并查看了 dragInteraction 附加到的视图的手势识别器。它_UIDragLiftGestureRecognizer不是公共 API 的一部分,但事实证明这只是UILongPressGestureRecognizer.

因此,在将您添加UIDragInteraction到您的视图后,并将该视图添加到视图层次结构后(因为我使用的是自定义 UIView 子类,我刚刚将其添加到didMoveToSuperview()),您可以执行以下操作:

if let longPressRecognizer = gestureRecognizers?.compactMap({ $0 as? UILongPressGestureRecognizer}).first {
    longPressRecognizer.minimumPressDuration = 0.1 // your custom value
}
于 2018-05-17T15:05:37.130 回答
3

我试图在UIView实现IUIDragInteractionDelegate接口的 Xamarin.iOS 中执行此操作。在它的构造函数中,我创建了一个SetupDragNDrop方法,允许在没有默认延迟/延迟的情况下拖动视图来捕获视图。我将代码留在下面,以防它对其他人有用:

    #region Private Fields
    private UIDragInteraction _UIDragInteraction;
    #endregion

    void Initialize()
    {
        SetupDragNDrop();
    }

    private void SetupDragNDrop()
    {
        UserInteractionEnabled = true;
        _UIDragInteraction = new UIDragInteraction(this);
        AddInteraction(_UIDragInteraction);

        // On iPad, this defaults to true. On iPhone, this defaults to 
        // false. Since this app should work on the iPhone, enable the the 
        // drag interaction.
        _UIDragInteraction.Enabled = true;

        SetupDragDelay();
    }

    private void SetupDragDelay()
    {

        UILongPressGestureRecognizer longPressGesture = new UILongPressGestureRecognizer();

        GestureRecognizers?.ToList().ForEach(gesture =>
        {
            var x = gesture as UILongPressGestureRecognizer;
            if (x != null)
            {
                longPressGesture = x;
            }
        });

        longPressGesture.MinimumPressDuration = 0.0;
    }
于 2018-11-17T11:41:01.123 回答