I use a UIWebView
to show an \"About\" screen by displaying a bundled HTML file. My app\'s view hierarchy is: UITabBarController
/ UIViewCont
I also encountered the same problem , the solution I found is as follows.
-(void)viewDidLoad {
[super viewDidLoad];
[_webView setOpaque:NO];
_webView.backgroundColor = [UIColor clearColor];
self.webView.hidden = YES;
}
-(void)webViewDidFinishLoad:(UIWebView *)webView {
//...........................
self.webView.hidden = NO;
}