Black area on UIWebView during load
ios, uiwebview
Solution
I've had this problem before, and it's related to the content inset of your UIWebView. This black area appears wherever you have a bottom inset set on the scrollview. I was able to fix this by setting the `opaque` property of the webview:
self.opaque = NO;
Problem
I noticed that my `UITabBar` gets a dark-gray color when I preform `loadRequest` in my `UIWebView`. If I scroll my `WebView` during `loadRequest` there is a black area How can I remove this?