如何检测 iPhone 上的两根手指轻按?
如何检测 iPhone 上的两根手指轻按?
How do I detect two fingers tap on the iPhone?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何检测 iPhone 上的两根手指轻按?
How do I detect two fingers tap on the iPhone?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
如果您可以面向 OS 3.2 或更高版本,则可以使用
UITapGestureRecognizer
。它真的很容易使用:只需配置它并将其附加到视图即可。当执行手势时,它将触发gestureRecognizer目标的动作。示例:
然后您只需实现一个
- (void) viewWasDoubleTapped:(id)sender
方法,当双击[self view]
时就会调用该方法。编辑
我刚刚意识到您可能正在谈论用两根手指检测单次点击。如果是这样的话,你可以这样做
.
这种方法的主要优点是您不必创建自定义视图子类
If you can target OS 3.2 or above, you can use a
UITapGestureRecognizer
. It's really easy to use: just configure it and attach it to the view. When the gesture is performed, it'll fire the action of the gestureRecognizer's target.Example:
Then you just implement a
- (void) viewWasDoubleTapped:(id)sender
method, and that will get invoked when[self view]
gets double-tapped.EDIT
I just realized you might be talking about detecting a single tap with two fingers. If that's the case, the you can do
.
The primary advantage of this approach is that you don't have to make a custom view subclass
如果您的目标不是 3.2+:
If you're not targeting 3.2+:
将
multiTouchEnabled
属性设置为YES
。Set the
multiTouchEnabled
property toYES
.如果您的要求允许,请使用 UITapGestureRecognizer。否则,在您的自定义 UIView 中实现以下 UIResponder 方法:
跟踪整个过程以查看有多少次触摸以及它们的移动是否超过您的点击/拖动阈值。您必须实现所有四种方法。
If your requirements allow, use UITapGestureRecognizer. Otherwise, implement the following UIResponder methods in your custom UIView:
Track throughout to see how many touches there were and whether or not they moved more than your tap/drag threshold. You must implement all four methods.