how to change the UIWebView background
How to change the default gray backgr开发者_运维知识库ound color of UIWebView to an image?
This is how you can set the background image:
self.webView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithContentsOfFile:imagePath]];
精彩评论