how to make clear colour in uiwebview
I am having a UIWebView
and I want to make it transperent as I have image in background in the Imageview. I tried webView.backgroundColor = [UIColor clearColor];
but it didn't work.
tha开发者_如何学运维nks
It should work; make sure the webview is not opaque.
[myWebView setBackgroundColor:[UIColor clearColor]];
[myWebView setOpaque:NO];
You also have to check that your HTML content does not set a background color for the body tag.
body{background-color:transparent;}
精彩评论