Quantcast
Channel: Developer Feed - Snippet
Viewing all articles
Browse latest Browse all 178

How to make UIWebView background transparent?

$
0
0

Answer

At times the UIWebView background needs to be made transparent so that the html content is displayed flushed against the screen background.

For this set the following properties on the UIWebView

[yourView setBackgroundColor:[UIColor clearColor]];
[yourWebView setOpaque:NO];

<!--break-->


Viewing all articles
Browse latest Browse all 178

Trending Articles