Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on an iPad app which is based on a UIWebView: to explain it in the simplest possible terms, the app shows one big interactive webview and in addition it supports custom gestures.

I need to catch events that represent single taps on the webview, but only when the taps have not already been consumed by the webview (i.e. they are not the beginning of a scroll/zoom operation, they are not taps on links, they are not taps that trigger some javascript).

The UIWebView is very greedy with its events, and in my experience it tends not to propagate them, even when they are not consumed. To catch the events, I ended up subclassing the main UIWindow (see http://mithin.in/2009/08/26/detecting-taps-and-events-on-uiwebview-the-right-way/). This is working well, but the problem is I'm not able to recognize whether the taps I'm getting have triggered some javascript in the webview or not.

As an additional restriction, I have no control over the javascript that's going to run in the UIWebView or the HTML that it's going to be displayed.

So, the question goes like this: what would be a way to detect all and only the tap events which did not trigger any other action in the UIWebView itself, especially javascript actions?

~

Should you be curious, the source code of the project I'm working on is on GitHub: to find it, just ask Google to point you to Baker Framework.

share|improve this question

1 Answer

Do this with JavaScript. First, after your webview finishes loading, attach a javascript click handler to the body to soak up any unused clicks. Have it load a made-up domain as it's action:

- (void)webViewDidFinishLoad:(UIWebView *)webView
{
    NSString *script = @"document.body.onclick = function () { document.location.href = 'http://clickhandler'; }"
    [webView stringByEvaluatingJavaScriptFromString:script];
}

Then in your webview delegate, look out for attempts to load that made up domain and intercept them. You now have a way to intercept that javascript click handler with native code and react accordingly:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
    if ([request.URL.host isEqualToString:@"clickhandler"])
    {
        //handle click
        //your logic here
        return NO;
    }
    return YES;
}
share|improve this answer
1  
+1 But rather than using a bogus host, I usually recommend using a custom scheme. So instead of http://clickhandler, I recommend handler: and using request.URL.scheme to check for it. This makes it easy to pass data like handle:click, and it's more explicit than a fake host. – Rob Napier Feb 21 '12 at 1:52
I originally though that too, but it's not a good idea. A custom scheme won't work unless you add it as supported scheme to your info.plist, and then if anyone types that scheme into Safari it will launch your app, which is an undesired side effect for something that is supposed to be an internal protocol for your app. Using http:// with a bogus host that doesn't have a top-level-domain (i.e. no .com on the end) is safe because it can't possibly collide with a real domain. – Nick Lockwood Feb 21 '12 at 7:37
I do this all the time. You don't need to register a custom scheme in order to capture it in the webview delegate. You only have to register it if you want it to be forwarded to you by other apps. – Rob Napier Feb 21 '12 at 15:52
I'm pretty sure Webviews wouldn't correctly handle custom schemes previously unless the app declared them properly, but perhaps that's no longer the case. – Nick Lockwood Feb 21 '12 at 16:11
Try it out. Like I said, I've done it this way for a long time, and my current project relies on it heavily. Here's a blog post going into it with some more detail: icab.de/blog/2009/08/05/webkit-on-the-iphone-part-2 – Rob Napier Feb 21 '12 at 16:49
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.