ios - 结合 UIAttachmentBehavior 和 UICollisionBehavior

标签 ios swift uikit-dynamics

我想使用 UIKit Dynamics 组合 UIAttachmentBehavior 和 UICollisionBehavior,以便用户可以拖动 View (使用 UIPanGestureRecognizer)但不会离开特定区域。

当用户/UIView 与碰撞行为的边界发生碰撞时,问题就出现了,因为此时不可能进行垂直移动。

即当与边界区域的左侧发生碰撞时,一个人会“卡住”在那里,不能上下移动,就在右边。将 UIView 拖回原来的路径。

非常感谢 UIDynamicItemBehavior 解决此问题的任何帮助(尝试了弹性、摩擦和阻力,但无济于事)。

enter image description here

最佳答案

我认为您以错误的方式实现了 UIPanGestureRecognizer。试试下面的例子。只需创建一个新项目并将此代码粘贴到您的 ViewController 中。如果需要缩小可拖动区域,可以使用 dragView 函数。

import UIKit

class ViewController: UIViewController, UICollisionBehaviorDelegate {

    var collision: UICollisionBehavior!
    var animator: UIDynamicAnimator!

    override func viewDidLoad() {
        super.viewDidLoad()

        let container = UIView(frame: CGRect(x: 30, y: 60, width: 300, height: 500))
        self.view.addSubview(container)
        container.backgroundColor = .gray

        self.animator = UIDynamicAnimator(referenceView: container);
        //self.animator.setValue(true, forKey: "debugEnabled")

        let greenBox = UIView(frame: CGRect(x: 60, y: 240, width: 50, height: 50))
        greenBox.backgroundColor = .green
        container.addSubview(greenBox)

        let blueBox = UIView(frame: CGRect(x: 10, y: 10, width: 50, height: 50))
        blueBox.backgroundColor = .blue
        container.addSubview(blueBox)

        let redBox = UIView(frame: CGRect(x: 200, y: 300, width: 50, height: 50))
        redBox.backgroundColor = .red
        container.addSubview(redBox)

        self.collision = UICollisionBehavior(items: [greenBox, blueBox, redBox])
        self.collision.translatesReferenceBoundsIntoBoundary = true
        self.collision.collisionMode = .everything
        self.animator.addBehavior(self.collision)
        self.collision.collisionDelegate = self


        let c = UIDynamicItemBehavior(items: [redBox])
        c.density = 10000
        self.animator.addBehavior(c)

        let noRotation = UIDynamicItemBehavior(items: [greenBox, blueBox])
        noRotation.allowsRotation = false
        self.animator.addBehavior(noRotation)

        let panGesture = UIPanGestureRecognizer(target: self, action: #selector(self.dragView(_:)))
        greenBox.isUserInteractionEnabled = true
        greenBox.addGestureRecognizer(panGesture)

        let panGesture2 = UIPanGestureRecognizer(target: self, action: #selector(self.dragView(_:)))
        blueBox.isUserInteractionEnabled = true
        blueBox.addGestureRecognizer(panGesture2)

    }


    @objc func dragView(_ sender:UIPanGestureRecognizer){

        if let viewDrag = sender.view {
            self.view.bringSubview(toFront: viewDrag)
            let translation = sender.translation(in: self.view)
            viewDrag.center = CGPoint(x: viewDrag.center.x + translation.x, y: viewDrag.center.y + translation.y)
            sender.setTranslation(CGPoint.zero, in: self.view)
            animator.updateItem(usingCurrentState: viewDrag)
        }
    }

}

关于ios - 结合 UIAttachmentBehavior 和 UICollisionBehavior,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30956577/

相关文章:

ios - 使用 UICollisionBehavior 调整 UIView 的大小

ios - 如何在可移动的两个UIView之间重新绘制连线

android - 在线播放多首音频

ios - 处理异步错误处理

ios - UITableViewCell swift 中的滑动模拟

ios - 如何将 Temboo Http Post API 的 Objective-C 转换为 Swift iOS

iOS - SSL 握手 - 客户端证书 - NSURLSession - NSURLErrorDomain 代码=-1200 - 错误链

objective-c - 您的第二个 iOS 应用程序 - 启用持久主列表

ios - Xcode 11.4 - 归档项目 - 段错误 11

ios - 如何在应用 UIKit Dynamics 重力的同时获取 UIView 的框架更新?