如何使 UIWebView 的 html 正文透明

发布于 2024-09-17 10:01:57 字数 152 浏览 4 评论 0原文

嗨....我是 iPhone 编程新手。有人可以帮我吗?

我有一个由 eXe 工具生成的 html。我需要在 UIImageView 上显示它。所以 html 必须是透明的,然后图像看起来像背景。

是否有可能使该 html 透明..?

感谢你

Hii....i am new to iPhone programming..Can anybody help me out please

i have an html which is generated by eXe tool.I need to show it on an UIImageView. so the html has to be transparent then the image looks like backround.

is it possible to make that html as transparent..?

Thank u

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

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

发布评论

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

评论(2

冷默言语 2024-09-24 10:01:57

我刚刚使用了 这个,效果很好。不过, [UIColor clearColor] 和 [myWebView setOpaque:NO] 缺少方括号。顺便说一句,如果需要,您还可以将 html 中的背景样式设置为 rgba 值,而不是完全透明,例如 body { background:rgba(255,255,255,0.6); }

I just used this, and it worked fine. [UIColor clearColor] and [myWebView setOpaque:NO] are missing the square brackets, though. BTW, you can also set the background style in the html to an rgba value instead of totally transparent if you need, e.g. body { background:rgba(255,255,255,0.6); }

浮华 2024-09-24 10:01:57

只需编写这一行即可成为 UIWebView 透明

[myWebView setOpaque:NO]

just write this line to become the UIWebView Transparent

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