I noticed that my UITabBar gets a dark-gray color when I preform loadRequest in my UIWebView.
UITabBar
loadRequest
UIWebView
If I scroll my WebView
WebView
You need to set the background color to clear as well as making the webView opaque. This doesn't seem to work if you don't also change the backgroundColor to clear.
self.opaque = NO; self.backgroundColor = [UIColor clearColor];