如何将 UITapGestureRecognizer 添加到 UIWebView 中?
我正在尝试使用大 UIWebView 将 UITapGestureRecognizer 添加到我的视图中,但仅当用户点击不在 UIWebView 中时才有效。我该如何解决这个问题?谢谢。
I'm trying to add UITapGestureRecognizer to my view with big UIWebView, but in works only if user tap not in UIWebView. How can I fix this? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过实施此方法来实现这一点
You can achieve this by implementing this method
UIWebView 有它自己的用于打开链接等的点击处理,因此它不处理“您的”触摸。您应该子类化 WebView 并覆盖点击处理。很好的例子这里。
UIWebView has it's own tap handling for opening links etc., therefor it doesn't handle "your" touches. You should subclass WebView and override tap handling. Good example here.