转:让UIWebView背景透明

转:让UIWebView背景透明

创建:2012.03.22
转:
  I recommend:
webView.opaque = NO;
webView
.backgroundColor = [UIColor clearColor];

(for some reason it didn't work to set those properties via IB) and include this into your HTML code:

<body style="background-color: transparent;">

[自:注意: 设置opaque和backgroundColor时不能在XI B中进行,在ios4中,在xib配置将不起作用。 不过在ios5中却正常。
后面的html内容根据情况来看,有时候不加也可以的。]


+++++

你可能感兴趣的:(转:让UIWebView背景透明)