I have a UITapGestureRecognizer on my UIViewController. The UIViewController has a UIScrollView which has a UIWebView. Now the problem I am having is how can I ignore the tap if it was going to a link in the UIWebView, in other words when it hits:
- (BOOL)webView:(UIWebView *)webview shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
the tap gesture recognizer should be ignored. The problem is there is no way that I can do this. Do you guys have any idea?