Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 205 Bytes

File metadata and controls

8 lines (6 loc) · 205 Bytes

UIWebView transparent background color

You can use these two lines code to make a UIWebView transparent.

self.webView.backgroundColor = UIColor.clearColor;
self.webView.opaque = NO;