Thursday, May 3, 2012

UIWebView の背景色を透明にする

UIWebView *webview = [[UIWebView alloc] init];
...
webview.backgroundColor = [UIColor clearColor];
webview.opaque = NO;
...