我正在使用这个单指手势识别器的部分代码:
http://blog.mellenthin.de/archives/2012/02/13/an-one-finger-rotation-gesture-recognizer/
我在模式下添加了三个带触摸的取消按钮。当我在 xcode 中实现它并在模拟器上运行我的应用程序时,这些按钮只有在我滑动它们时才能正常工作。他们不承认一键点击。我应该怎么办?
谢谢,
我正在使用这个单指手势识别器的部分代码:
http://blog.mellenthin.de/archives/2012/02/13/an-one-finger-rotation-gesture-recognizer/
我在模式下添加了三个带触摸的取消按钮。当我在 xcode 中实现它并在模拟器上运行我的应用程序时,这些按钮只有在我滑动它们时才能正常工作。他们不承认一键点击。我应该怎么办?
谢谢,
您需要实现一种委托方法,如下所示
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
return YES;
}
如需更多解释,请使用此示例。
快乐编码:)