tags:

views:

24

answers:

1

How to change the default gray background color of UIWebView to an image?

+1  A: 

This is how u can set the background image:

 self.webView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageWithContentsOfFile:imagePath]];
Ideveloper