Black area on UIWebView during load

前端 未结 5 1780
[愿得一人]
[愿得一人] 2021-02-05 06:34

I noticed that my UITabBar gets a dark-gray color when I preform loadRequest in my UIWebView.

If I scroll my WebView

5条回答
  •  野性不改
    2021-02-05 06:39

    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;
    

提交回复
热议问题