如何启用/禁用touchesMoved,touchesEnded和Swipe Gestures

时间:2016-04-18 07:53:26

标签: swift swift2 tvos touchesmoved touchesended

我正在制作一款我需要touchesMovedtouchesEnded的游戏,但在完成该阶段后,我想禁用touchesMovedtouchesEnded并启用 SWIPE GESTURES

那我怎么能实现这个目标呢?

正在播放游戏时:我希望停用滑动手势,并启用touchesBegantouchesMovedtouchesEnded

游戏完成后:我希望{}禁用touchesBegantouchesMovedtouchesEnded并启用滑动手势。

请帮帮我。感谢。

1 个答案:

答案 0 :(得分:0)

如果要在以下方法中禁用触摸返回false。

 func gestureRecognizer(gestureRecognizer: UIGestureRecognizer, shouldReceiveTouch touch: UITouch) -> Bool {
    return false
}