vote up 0 vote down star
2

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?

flag

75% accept rate

3 Answers

vote up 1 vote down check

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|flag
Very good observation. It's probably getting confused with multiple views. Have to see if I can find a workaround. – avocade Sep 1 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 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 at 13:51
Your name really is h4x0r, isn't it :) – avocade Sep 2 at 8:43
:-D it's my car number plate too!... – h4xxr Sep 2 at 9:22
vote up 0 vote down

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|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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