Unlike other UIViews, the UIWebview’s opaque property is set to true by default. That should be set to false for changing the background color.
[myWebView setOpaque:NO]; myWebView.backgroundColor=[UIColor redColor];
Unlike other UIViews, the UIWebview’s opaque property is set to true by default. That should be set to false for changing the background color.
[myWebView setOpaque:NO]; myWebView.backgroundColor=[UIColor redColor];