iPhone - 更改视图后面的 UIWebView 背景颜色(弹跳背景)
我有一个带有黑色内容的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
webview color
设置为clearcolor
添加,然后将 webviewopaque
设置为no
。这样就可以了。
Set
webview color
toclearcolor
add then webviewopaque
tono
.That will do the trick.
您确定所有您的子视图都设置为黑色吗?将 webview 的背景颜色设置为黑色应该可以正常工作。 (它在我的应用程序中有效,如果它不适合你,我将不得不检查我是否做了其他事情......)
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...)