创建: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时不能在XIB中进行,在ios4中,在xib配置将不起作用。不过在ios5中却正常。后面的html内容根据情况来看,有时候不加也可以的。]
+++++