How do remove the gradient from a UIWebView - the one that you see if you overscroll the top or bottom. This code

webView.backgroundColor = [UIColor whiteColor];

just changes the color of the gradient, it doesn't removes it. How can this be done?

(note: not the same question as http://stackoverflow.com/questions/655225/uiwebview-underside)

link|improve this question

74% accept rate
1  
I would like to find this out too, as that would make the bounce look nice in a UIWebView... – Dan J Oct 22 '10 at 13:26
Yes, this is most annoying, I'd also be interested in a solution – MrCranky Nov 12 '10 at 15:20
possible duplicate of Remove UIWebView Shadow? – JosephH Mar 26 at 10:11
feedback

4 Answers

up vote 29 down vote accepted

Aha, yes terminology fail. I wouldn't call that a shadow at all, but ce la vie. Here is my type-safe code to achieve the effect. To summarise: this will hide any image-view children of the scroll view. It's not as vulnerable to change as the (objectAtIndex:0) methods, so if Apple re-order the children of the webView control it will work fine, but still relies on the fact that the gradient effect is applied by imageviews parented to the scroll view (and that there is indeed a scrollview underpinning the web view).

{
    webView.backgroundColor = [UIColor whiteColor];
    for (UIView* subView in [webView subviews])
    {
        if ([subView isKindOfClass:[UIScrollView class]]) {
            for (UIView* shadowView in [subView subviews])
            {
                if ([shadowView isKindOfClass:[UIImageView class]]) {
                    [shadowView setHidden:YES];
                }
            }
        }
    }
}
link|improve this answer
You wouldn't call it a shadow? Certainly it is implemented by drawing a gradient, but the purpose is to make the webview appear to float over the background. So I will still call it a shadow :-) – Brian Nov 12 '10 at 21:51
That's fair enough. :-) Bounty awarded for linking the question, although should this one perhaps be closed as a duplicate? – MrCranky Nov 17 '10 at 12:09
feedback

You mean the shadow? Remove UIWebView Shadow?

link|improve this answer
feedback

The only way I found how to do this was :

for(UIView *aView in [[[webView subviews] objectAtIndex:0] subviews]) { 
        if([aView isKindOfClass:[UIImageView class]]) { aView.hidden = YES; } 
}

It just just steps thru the subviews of UIWebView and removes the view if it is an image view.

I haven't put this in any App Store apps, so I don't know if Apple would accept it.

EDIT: Brian's link provides more details.

link|improve this answer
feedback

Using method suggested above you won't be able to edit your scroll indicator/insets later. They appear as UIImageView also, so you should check for last object:

            UIView* lastView = [[subView subviews] lastObject];
            for (UIView* shadowView in [subView subviews])
            { 
                if(shadowView!=lastView) ... <-this one is a scroll 
            }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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