iPhone - 更改视图后面的 UIWebView 背景颜色(弹跳背景)

发布于 2024-12-10 19:00:08 字数 115 浏览 1 评论 0原文

我有一个带有黑色内容的 UIWebView。我所有的视图和子视图都设置为黑色背景。

当将 webView 滚动到顶部或底部位置时,我可以看到内容弹跳时出现白色背景。那么我怎样才能强迫背景也变成黑色呢?

I have a UIWebView with a black content. All my views and subviews are set to black background.

When scrolling the webView to its top or bottom position, I can see a white background appear while the content is bouncing. So how may I force that background also to be black ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉生梦死 2024-12-17 19:00:08

webview color 设置为 clearcolor 添加,然后将 webview opaque 设置为 no

webview.backgroundColor = [UIColor clearcolor];
webview.opaque=NO;

这样就可以了。

Set webview color to clearcolor add then webview opaque to no.

webview.backgroundColor = [UIColor clearcolor];
webview.opaque=NO;

That will do the trick.

毁我热情 2024-12-17 19:00:08

您确定所有您的子视图都设置为黑色吗?将 webview 的背景颜色设置为黑色应该可以正常工作。 (它在我的应用程序中有效,如果它不适合你,我将不得不检查我是否做了其他事情......)

webview.backgroundColor = [UIColor blackColor];

Are you sure all your subviews are set to black? Setting the webview's background color to black should work just fine. (It works in my app, if it doesn't work for you, I'll have to check if I do something else...)

webview.backgroundColor = [UIColor blackColor];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文