views:

48

answers:

1

Hii....i am new to iPhone programming..Can anybody help me out please

i have an html which is generated by eXe tool.I need to show it on an UIImageView. so the html has to be transparent then the image looks like backround.

is it possible to make that html as transparent..?

Thank u

+1  A: 

I just used this, and it worked fine. [UIColor clearColor] and [myWebView setOpaque:NO] are missing the square brackets, though. BTW, you can also set the background style in the html to an rgba value instead of totally transparent if you need, e.g. body { background:rgba(255,255,255,0.6); }

MBass