I'm trying to figure out why something with Javascript isn't working inside of a UIWebView. To my knowledge, there is no way to set a breakpoint inside of XCode for a js file. No problemo, I'll just go back to 2004 and use alert statemen-- oh wait they don't seem to work inside of a UIWebView either!

The only thing I could think of is by exporting my HTML And JS files to my desktop and then just doing my debugging inside of Safari. And that works! But of course, the bug I'm fighting with in the UIWebView doesn't occur in Safari.

Are there any other ways for debugging inside of a UIWebView, or any tricks that I can use akin to using the old-school alert method?

link|improve this question

feedback

4 Answers

up vote 5 down vote accepted

This query tops google, so worth linking to the remoteInspector hidden in iOS5 - by far the best way found so far to debug your UIWebViews - just conditional compile out before you send to Apple.

link|improve this answer
I've tried id without success... – Julien Mar 21 at 10:41
1  
Does still work, use it like this: [NSClassFromString(@"WebView") performSelector:@selector(_enableRemoteInspector)]; Remember to remove the call when you build for release! – rpitting Apr 3 at 13:58
feedback

alert() certainly works for me.

However, you can also do lots of other things, like make your own DHTML alert that pops up in a layer. This can be nice because you can do multiple alerts to a single div, without stopping your app. You should also be able to write a stack trace to it (the stack trace is in the exception object, and you can always throw your own exceptions).

Alternatively, if running on the simulator your custom "alert()" could call into objective C, and display the string in the iPhone simulator's console window:

document.location.href = "http://debugger/" + 
   encodeURIComponent(outputString);   

and on the objective C side:

//--------------------------------------------------------------------
- (BOOL)webView:(UIWebView*)webView 
       shouldStartLoadWithRequest: (NSURLRequest*)req 
       navigationType:(UIWebViewNavigationType)navigationType {
    if ([[[req URL] host] isEqualToString:@"debugger"]){
        // do stuff with [[req URL] path] 
       }
}

That said, I have an app that is heavy on the UiWebView / javascript stuff, and I tend to do most javascript dev in Chrome (simulating what is necessary from the iPhone environment)

link|improve this answer
what do you mean "alert()" certainly works for me? Doing a call into Objective-C is creative, surprised I didn't think about that before since I do a bit of it already! Thanks. :) – bpapa May 21 '10 at 0:17
Yes, alert() works just fine. Maybe it didn't on an older version? But I just tried it, and get a popup that looks nearly identical to one done with UIAlertView on the objC side. – rob May 21 '10 at 1:37
feedback

I haven't tried this yet, but take a look at this Weinre

Looks very promising.

link|improve this answer
weinre is cool, but beware that it doesn't come with a stepwise JS debugger; it's just a "web inspector." (I didn't notice this until I'd gone to a lot of trouble getting it set up on my iPhone.) – Dan Fabulich May 1 '11 at 3:50
Weinre seems to have stopped working since Lion: I cannot get connections anymore, possibly an issue with sandboxing. – rpitting Apr 3 at 13:39
feedback

You can set up a system like that used in PhoneGap to send messages from JavaScript to Objective-C and log from there. In a nutshell, they are setting document.location with a custom scheme and blocking that scheme in the delegate callback.

You can take advantage of the fact that a UIWebView is most of the delegates for a WebView. WebKit is technically undocumented for iPhone, but mostly the same as specified in the desktop WebKit headers, possibly including the WebScriptObject. I use this for debugging, but be sure to strip this code out before submitting to Apple.

To get a WebView from a UIWebView, implement a delegate method like -(void) webView:(id)inWebView didFinishLoadForFrame:(id)inWebFrame in a subclass of UIWebView. Call super if you use that one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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