美文网首页iOS学习
UILongPressGestureRecognizer长按为什

UILongPressGestureRecognizer长按为什

作者: 码农冰冰 | 来源:发表于2016-12-05 15:25 被阅读75次
    • 当你使用UILongPressGestureRecognizer时,你可能会发现触发的方法是两次:
            let  longGesture = UILongPressGestureRecognizer(target: self, action: #selector(longGestureMe(sender:)))
            view.addGestureRecognizer(longGesture)
            
    
        func longGestureMe(sender:UILongPressGestureRecognizer) {
            if (sender.state == UIGestureRecognizerState.began) {
                print("长按点击")
            }
        }
    

    其实时因为响应不同的状态。所以,要在你的方法里加上状态的判断。可以看到,开始响应,结束响应,如果你不判断的话,都会调用你的方法。

    相关文章

      网友评论

        本文标题:UILongPressGestureRecognizer长按为什

        本文链接:https://www.haomeiwen.com/subject/biokmttx.html