I have an app with a UITableView and a corresponding detail view for each row. In the detail view I have to display some text and a background image (text is different for each row, but the image remains the same). The easiest way, in my opinion, is to put the text in an .rtf file and display it in a UIWebView. Then just put a UIImageView behind the UIWebView.

I've tried to set the UIwebView's opacity to zero in IB, but i didn't help.

Can you help me?

Thanks in advance!

link|improve this question

feedback

2 Answers

up vote 69 down vote accepted

Nava's solution crashes with an unrecognized selector exception. In fact, setDrawsBackground is not mentioned anywhere in the iOS SDK (perhaps this is available on the Mac?).

Instead, I recommend:

webView.opaque = NO;
webView.backgroundColor = [UIColor clearColor];

(for some reason it didn't work to set those properties via IB) and include this into your HTML code:

<body style="background-color: transparent;">
link|improve this answer
Thanks Ortwin. It works in my app with iOS 4.2.1. :-) – diwup Jan 1 '11 at 17:07
it was true for previous versions of iOS... and worked for the guy who asked it... I used it also w/o any problem for iOS 3+. things change and there are differences between sdks. take it into consideration before downvoting answers – Nava Carmon Jan 2 '11 at 17:19
@Nava: In September 2010 we already had iOS 4, so the solution didn't work at that time for the current OS. And the fact it isn't mentioned in Apple's documentation is always a rejection risk that we should point out in our answers. Nevertheless, I didn't down vote your answer. – Ortwin Gentz Jan 3 '11 at 12:09
Thanks Ortwin. It works great. – yeon Feb 13 '11 at 22:29
feedback
use below recursive method to remove gradient from uiwebview.

[webView setBackgroundColor:[UIColor clearColor]];
[self hideGradientBackground:webView];


- (void) hideGradientBackground:(UIView*)theView
{
  for (UIView * subview in theView.subviews)
  {
    if ([subview isKindOfClass:[UIImageView class]])
      subview.hidden = YES;

    [self hideGradientBackground:subview];
  }
}
link|improve this answer
works for me in simulator. Have not tested on device yet. – zumzum Feb 6 at 10:51
It will work on device too!!!! – Neel Feb 6 at 12:37
don't forgot to write webView.opaque = NO; – Neel Feb 15 at 9:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.