Jason,
I tried your method, but I must be missing something...
I have a Default.png that shows when my app starts up, then the screen goes blank, then the webview shows. That "blank time" is driving me batty. Is there an easy way to keep the Default.png showing until the webapp is finished loading, without that annoying "blank time"?
I've tried ... to no avail...
- (void)webViewDidFinishLoad

UIWebView *)webView {
[window makeKeyAndVisible];
}
and ...
- (void)webViewDidFinishLoad

UIWebView *)webView {
[webView setHidden:NO];
}