I added a back color as the image in uiwebview, but it goes to the back of the web view, not the web view. Web browsing is always displayed in white, I cannot change it.
myView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]]; myView.autoresizingMask=YES; webView = [[UIWebView alloc] init]; webView.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"BG_Doctor.png"]]; webView.delegate = self; [myView addSubview:webView]; self.view=myView;
Please help me set the background color for web viewing not for him.
colors iphone background uiwebview
Madan mohan
source share