I have an UIWebView, where i changed the background image. but the image is not changed behind the text,but displaying the image apart from the text. it just shows white background behind text, can any one let me know how can i remove it.
self.webview.backgroundColor = [UIColor clearColor];
self.webview.opaque = NO;
UIColor *background=[[UIColor alloc]initWithPatternImage:[UIImage imageNamed:@"mainbg2_ipad.png"]];
self.webview.backgroundColor=background;
self.view.backgroundColor=background;
Thanks
Try this code…