I had similar issues that were resolved when using the delay from Jason's post.
Just make sure you set the delegate of the webView to self and have a look if this works.
Quote:
- (void)webViewDidFinishLoad UIWebView *)webView {
[self performSelector:@selector(showWebView) withObject:nil afterDelay:.1];
}
- (void)showWebView {
[window makeKeyAndVisible];
[webView setHidden:NO];
}
|
If not, try adding a NSLog in the showWebView to see if this is called properly.