如何设置UIWebView的背景颜色
我想改变网络视图的背景颜色。不是针对它显示的 HTML 文档,而是针对可以滚动的实际滚动视图。如果滚动网页视图,您会看到灰色背景颜色。我已经尝试过下面的代码,但不适合我。其实我想让它透明。
[detailWebV setOpaque:NO];
detailWebV.backgroundColor = [UIColor clearColor];
提前致谢!
I want to change the background color of the webview. Not for the HTML document it display but for the actual scroll view which can be scrolled. If you scroll a web view you see a gray background color. I have tried below code for this but not working for me. Actually I want to make it transparent.
[detailWebV setOpaque:NO];
detailWebV.backgroundColor = [UIColor clearColor];
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个
Try this
另一种方法是使用 JavaScript 设置它:
Another way is to set it by using JavaScript:
以下对我有用。这就是我想要的,当我向下滚动网页视图时,背景应该是透明的。
谢谢大家!!!
the following has worked for me . This is what I wanted , when I scroll down the web view , the background should be transparent .
Thank you all !!!