ios webview gif背景为透明设置

UIWebView加载过程中,在页面没有加载完毕前,会显示一片空白。为解决这个问题,方法如下:

webView.backgroundColor = [UIColor clearColor];  
webView.opaque = NO;  
[webView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"webbg.png"]]];


你可能感兴趣的:(ios webview gif背景为透明设置)