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.
Asked
Active
Viewed 2,021 times
2 Answers
0
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.

Kai Huppmann
- 10,705
- 6
- 47
- 78