Pan Gesture使视图在拖动时从手指跳开

问题描述 投票:0回答:2

尝试使用平移手势识别器拖动视图时出现问题。该视图是collectionViewCell,并且拖动代码正在工作,除了拖动开始时,该视图向上和向左跳转。我的代码如下。

在collectionViewCell中:

override func awakeFromNib() {
    super.awakeFromNib()
    let panRecognizer = UIPanGestureRecognizer(target:self, action:#selector(detectPan))
    self.gestureRecognizers = [panRecognizer]
}

var firstLocation = CGPoint(x: 0, y: 0)
    var lastLocation = CGPoint(x: 0, y: 0)
    @objc func detectPan(_ recognizer:UIPanGestureRecognizer) {
        switch recognizer.state {
        case .began:
            firstLocation = recognizer.translation(in: self.superview)
            lastLocation = recognizer.translation(in: self.superview)
        case .changed:
            let translation  = recognizer.translation(in: self.superview)
            self.center = CGPoint(x: lastLocation.x + translation.x, y: lastLocation.y + translation.y)
        default:
            UIView.animate(withDuration: 0.1) {
                self.center = self.firstLocation
            }
        }
    }

第一个图像在拖动开始之前,第二个图像在向上拖动时发生。

enter image description here

enter image description here

ios swift uicollectionview uicollectionviewcell uipangesturerecognizer
2个回答
0
投票

谢谢@xTwisteDx的回答,我需要像这样更新视图的frame.origin:

//in the detectPan function, in the .changed state
self.frame.origin.y = translation.y
self.frame.origin.x = translation.x

0
投票

您正在使用self.center,而不是使用self.frame.origin.xself.frame.origin.y,然后您要设置翻译并将其添加到lastLocation。

有效地是,您的视图正在计算从视图中心更改的位置,就像您从该位置完美拖动然后平移+ lastLocation。我敢肯定,只需阅读您就知道该问题。

修复很简单。

self.frame.origin.x = translation.x
self.frame.origin.y = translation.y

差异是翻译的起始计算。原点将根据触摸事件的开始位置获取x / y位置。而.center始终从中心移开。

© www.soinside.com 2019 - 2024. All rights reserved.