tags:

views:

27

answers:

1

Is it possible to place an image in the UIWebView background instead of that gray default color. If yes then how?

+1  A: 

Did it by myself.

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