Black area on UIWebView during load

前端 未结 5 1843
[愿得一人]
[愿得一人] 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 07:01

    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];
    

提交回复
热议问题