检测 UIWebView 内部的点击 - 而不是链接上的点击
我想启用一些通过单击屏幕触发的功能。屏幕的视图是 UIWebView,我希望能够判断用户何时单击它,尽管不是当他单击其中的链接时,而是任何其他地方。
有什么想法吗?
嗯!
I want to enable some functionality that is triggered by clicking on the screen. the view of the screen is a UIWebView, and I'd like to be able to tell when the user clicks on it, though not when he clicks on a link inside of it, but any other place.
Any Ideas?
Tnx!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否看过
UIResponder 类参考
Have you looked at
touchesBegan:
/touchesEnded:
in theUIResponder Class Reference
看看这个代码片段。它可能对你有帮助。
当用户触摸屏幕时调用touchesBegan,当用户移动按住屏幕的手指时调用touchesMoved,当释放触摸时调用touchesEnded。
look at this code snippet. it might help you.
touchesBegan is invoked when user touched the screen, touchesMoved when the user move the finger holding the screen and touchesEnded is when the touch is released.