自定义webview背景色 重点是把webview弄成透明的 然后把self.view的背景调色即可
UIWebview 背景透明处理
让 UIWebView 背景透明需要以下设置
web_about.backgroundColor = [UIColor clearColor];
web_about.opaque = NO;
关键是在HTML里:
<body style="background-color: transparent">
2022-09-15 20:08:10
自定义webview背景色 重点是把webview弄成透明的 然后把self.view的背景调色即可
UIWebview 背景透明处理
让 UIWebView 背景透明需要以下设置
web_about.backgroundColor = [UIColor clearColor];
web_about.opaque = NO;
关键是在HTML里:
<body style="background-color: transparent">