自定义webview背景色 重点是把webview弄成透明的 然后把self.view的背景调色即可
UIWebview 背景透明处理
让 UIWebView 背景透明需要以下设置
web_about.backgroundColor = [UIColor clearColor];
web_about.opaque = NO;
关键是在HTML里:
<body style="background-color: transparent">
UIwebview 背景色调整,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/someonelikeyou/p/3764624.html