在动画UIView上点击手势不起作用

在动画UIView上点击手势不起作用,第1张

动画UIView上点击手势不起作用

使用Tapgesture后,您将无法完成自己的工作,原因有1个。手势与标签的框架相关联。开始动画时,标签的最后一帧立即更改,而您只是在观看假电影(动画)。如果您能够触摸屏幕上的(0,900),它将在发生动画时照常触发。不过,有一种方法可以使此方法有所不同。最好的办法是使用touchesBegan。这是我刚刚编写的用于检验理论的扩展,但可以进行扩展以适合您的需求,例如,您可以使用实际的子类并访问标签属性而无需循环。

extension UIViewController{public override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {    guard let touch = touches.first else{return}    let touchLocation = touch.locationInView(self.view)    for subs in self.view.subviews{        guard let ourLabel = subs as? UILabel else{return}        print(ourLabel.layer.presentationLayer())        if ourLabel.layer.presentationLayer()!.hitTest(touchLocation) != nil{ print("Touching") UIView.animateWithDuration(0.4, animations: {     self.view.backgroundColor = UIColor.redColor()     }, completion: {         finished in         UIView.animateWithDuration(0.4, animations: {  self.view.backgroundColor = UIColor.whiteColor()  }, completion: {      finished in         })     }) }        }    }}

您可以看到它正在测试CALayer.presentationLayer()的坐标。这就是我所说的电影。老实说,我还没有完全围绕表示层及其工作原理进行研究。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4927729.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-12
下一篇 2022-11-13

发表评论

登录后才能评论

评论列表(0条)

保存