I just made a webview transparent the other day.
Here is what I did:
first set the background color of the webview to clear:
myWebView.backgroundColor = [UIColor clearColor];
then in your html file use css syntax:
<body style="background-color:transparent">
I actually did it in the <head> section but that should work too.
Hope that helps you...it worked for me.
csmithmaui
|