菜鸟教程小白 发表于 2022-12-12 14:01:02

ios - 使用 UIPanGestureRecognizer 缩放和移动 UIView


                                            <p><p>我有一个 UIView A。我在 ViewA 上放了一个图标,并尝试使用平移手势来缩放和移动此 ViewA。</p>

<p>我尝试了很多解决方案,但我无法做到。</p>

<p>请建议帮助我?</p>

<p><strong>更多详情:</strong></p>

<p>我会添加更多细节。</p>

<p>我有 ViewA,在自身 View 上添加 subview 。我想当我在 ViewA 上绘制 panGestureRegonizer 时, ViewA 将跟随绘制移动。</p>

<p>并且在移动 ViewA 时会缩放。当 View 移动到屏幕的顶部/左侧/底部/右侧时, ViewA 将缩小,当 View 移动到屏幕中心时, ViewA 将放大。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>假设您有 <code>vc - ViewController</code> 并且您的 <code>UIView A</code> 是 <code>vc</code> 的 subview 。您可以将 <code>UIPanGestureRecognizer</code> 添加到 <code>A</code>。然后将 panGestureRegonizer 作为一个 Action 拖到你的 <code>vc</code> 中:</p>

<pre><code>@IBAction func panGestureAction(_ sender: UIPanGestureRecognizer) {
      //your code here
}
</code></pre>

<p>从 <code>sender</code> 您可以检查操作的 <code>view</code> 、 <code>location</code> 和 <code>state</code> 。 <code>state</code> 在某些情况下可能会影响您的代码,具体取决于您要实现的目标。</p>

<p>那你需要把action修改成这样:</p>

<pre><code>@IBAction func panGestureAction(_ sender: UIPanGestureRecognizer) {
      UIView.animateKeyframes(withDuration: 0.1, delay: 0, options: UIViewKeyframeAnimationOptions.calculationModeLinear, animations: {
            let location = sender.location(in: sender.view?.superview)
            sender.view?.center = location
      })
    }
</code></pre>

<p>这里 <code>sender.view?.superview</code> 等于 <code>vc.view</code>。此代码片段将检测平移手势,然后将移动 <code>A</code> 以使 <code>A.center</code> 与手势的位置相匹配。请注意,持续时间 0.1 为运动提供平滑的动画效果。</p>

<p>这将为您提供带有平移手势的“移动”功能。 </p>

<p><strong>EDIT</strong> 进行缩放:</p>

<p>逻辑:你有坐标系(CS)与<code>center</code>、<code>x</code>和<code>y</code>。当用户使用平移手势时,他/她在 CS 中生成点序列。所以我们的任务是测量CS中心和用户点之间的距离。当我们有最远的距离时,我们可以计算缩放 View 的比例因子。</p>

<pre><code>var center: CGPoint! //center of the CS
let maxSize: CGSize = CGSize.init(width: 100, height: 100) // maximum size of our scaling view
var maxLengthToCenter: CGFloat! //maximum distance from the center of the CS to the furthest point in the CS

private func prepareForScaling() {
    self.center = self.view.center //we set the center of our CS to equal the center of the VC&#39;s view
    let frame = self.view.frame
    //the furthest distance in the CS is the diagonal, and we calculate it using pythagoras theorem
    self.maxLengthToCenter = (frame.width*frame.width + frame.height*frame.height).squareRoot()
}
</code></pre>

<p>然后我们需要调用我们的设置函数来让我们的数据为缩放功能做好准备——我们可以在 <code>viewDidLoad</code> 中做到这一点:</p>

<pre><code>override func viewDidLoad() {
    super.viewDidLoad()
    self.prepareForScaling()
}
</code></pre>

<p>然后我们需要一个辅助函数来计算我们 View 的缩放大小,用于用户平移手势在屏幕上的当前位置。</p>

<pre><code>private func scaledSize(for location: CGPoint) -&gt; CGSize {
    //calculate location x,y differences from the center
    let xDifference = location.x - self.center.x
    let yDifference = location.y - self.center.y

    //calculate the scale factor - note that this factor will be between 0.0(center) and 0.5(diagonal - furthest point)   
    //It is due our measurement - from center to view&#39;s edge. Consider multiplying this factor with your custom constant.
    let scaleFactor = (xDifference*xDifference + yDifference*yDifference).squareRoot()/maxLengthToCenter
    //create scaled size with maxSize and current scale factor
    let scaledSize = CGSize.init(width: maxSize.width*(1-scaleFactor), height: maxSize.height*(1-scaleFactor))

    return scaledSize
}
</code></pre>

<p>最后,我们需要修改平移手势 Action 来改变<code>A</code>的大小:</p>

<pre><code>@IBAction func panGestureAction(_ sender: UIPanGestureRecognizer) {
    UIView.animateKeyframes(withDuration: 0.1, delay: 0, options: UIViewKeyframeAnimationOptions.calculationModeLinear, animations: {

      let location = sender.location(in: sender.view?.superview)

      sender.view?.frame = CGRect.init(origin: CGPoint.init(x: 0, y: 0), size: self.scaledSize(for: location))

      sender.view?.center = location
    })
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 使用 UIPanGestureRecognizer 缩放和移动 UIView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/47200132/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/47200132/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 使用 UIPanGestureRecognizer 缩放和移动 UIView