如何使webview透明? [复制]
Posted
技术标签:
【中文标题】如何使webview透明? [复制]【英文标题】:How to make webview transparent? [duplicate] 【发布时间】:2012-01-10 10:30:24 【问题描述】:我想让我的 webview 看起来透明,并在其上显示数据,背景显示父视图的图像。
谁能告诉我怎么做?
【问题讨论】:
【参考方案1】:可能对你有帮助
[webView setOpaque:NO];
webView.backgroundColor = [UIColor clearColor];
【讨论】:
【参考方案2】:以下代码用于解决您的问题
NSString *htmlData=@"your data string here";
[self.webVctr loadHTMLString:strForhtmldata baseURL:nil];
现在 webview 对下面的代码是透明的。
self.webVctr.opaque = NO;
self.webVctr.backgroundColor = [UIColor clearColor];
【讨论】:
【参考方案3】:UIWebView
是UIView
的子类,这意味着您可以将其backgroundColor
属性设置为透明的UIColor
:
myWebview.backgroundColor = [UIColor clearColor];
【讨论】:
看到这篇文章...***.com/a/3935033/845115以上是关于如何使webview透明? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
JavaFX WebView:透明WebView保持绘制旧内容