up vote 2 down vote favorite
3
share [g+] share [fb]

Using this method to hide the status bar:

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:YES];

When setting "hidden" back to NO, the tap-to-scroll-to-top (in UIWebView, UITableView, whatever) doesn't work any more, and requires a restart of the app to get the functionality back.

Is this a bug (I filed a rdar anyhow) or have I missed a step? Should I perhaps expect this behavior since the statusBar "loses touch" somehow with the respective view?

link|improve this question

43% accept rate
feedback

7 Answers

up vote 6 down vote accepted

You could try setting the ScrollsToTop property to true again after re-showing it:

[currentView setScrollsToTop:YES];

If that's not working, are you definitely only showing one view? If there is more than one scrolling view a scrollViewDidScrollToTop message is ignored...

link|improve this answer
Very good observation. It's probably getting confused with multiple views. Have to see if I can find a workaround. – avocade Sep 1 '09 at 13:16
The problem is that it's a UIWebView that needs to get the scroll-to-top behavior back–and it is not a direct UIScrollView subclass... thus that setScrollsToTop: doesn't work at all. IT probably has a scrollView somewhere in its UIWebViewInternal struct, but that seems to be very opaque. [webView valueForKey:@"_scrollView"] didn't work at all to get direct hold of it. Any other name guesses? :) – avocade Sep 1 '09 at 13:34
You could add the UIWebView as a subview of a UIScrollView (in my implementation it is a subview of a UITableView). If it is the only view inside that UIScrollView then calling -setScrollsToTop on the UIScrollView should make it work on the UIWebView... – h4xxr Sep 1 '09 at 13:51
Your name really is h4x0r, isn't it :) – avocade Sep 2 '09 at 8:43
:-D it's my car number plate too!... – h4xxr Sep 2 '09 at 9:22
feedback

The following fix by Alex worked for me. Thanks!

((UIScrollView *)[[webView subviews] objectAtIndex:0]).scrollsToTop = NO;

Being in a hurry this fix worked great, however given more time I might've subclassed the UIWebView and accessed the protected UIScrollView member directly.

The worry I have with Alex' method is that it assumes that UIScrollView is at index zero of the subviews (encapsulation allows private members to change). Which suggests another solution still:

for (UIView* v in [webView subviews])
{
    if ([v isKindOfClass:[UIScrollView class]])
    {
        (UIScrollView *)v.scrollsToTop = NO;
    }
}
link|improve this answer
feedback

I was having a similar problem where the scroll-to-top functionality was lost. Turns out this will only work when you have only one active view at a time (within the same scroll view). In my case I had a table view and another view which would fade in/out. Adding a removeFromSuperview at the end of the animation did the trick.

The answer was in the UIScrollView.h file comments:

/*
 this is for the scroll to top gesture. by default, a single scroll visible scroll view with this flag set will get the call. if there is more than one visible with this
 flag set or the delegeat method returns NO, the view isn't scrolled 
 */
@property(nonatomic) BOOL  scrollsToTop;          // default is YES. if set, special gesture will scroll to top of view after consulting delegate
link|improve this answer
feedback

In iOS 5.0 you can access the scrollview property of the UIWebView :)

webView.scrollView.scrollsToTop = YES;
link|improve this answer
feedback

You can use the following code to have the UIWebView ignore scrollToTop without the extra UIScrollView:

((UIScrollView *)[[webView valueForKey:@"_internal"] valueForKey:@"scroller"]).scrollsToTop = NO;
link|improve this answer
4  
As this uses a private API call, this will likely cause your application to be rejected. You may be able to get away with ((UIScrollView *)[[webView subviews] objectAtIndex:0]).scrollsToTop = NO; – Alex Reynolds Dec 23 '09 at 0:31
Thanks Alex! Much more elegant and safe for sure. – Nick Toumpelis Dec 23 '09 at 7:59
This works for me. Great solution, thanks! – Jasarien Apr 23 '10 at 9:47
feedback

I had a similar problem after playing a Youtube video within my app. scrollsToTop was still set to YES but tapping the status bar had no effect.

I finally realised that my app window was no longer the key window. After adding the following line to a UIWindow subclass (which I already had for other reasons) everything worked as it should again:

if (![self isKeyWindow]) [self makeKeyWindow];
link|improve this answer
feedback

I just ran across a similar behavior in the app I'm currently working on. In its case, if you load a YouTube video from within a UIWebView, scroll to top stops working for the rest of the application's life cycle. I kind of assume this might happen after loading the movie player as well, but haven't confirmed. That functionality has been around a lot longer and probably has fewer bugs.

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.