UIScrollView and UIWebView both have special handlers for when the user clicks on the status bar. Is there any way to handle status bar clicks in my views and view controllers?
+3
A:
Crap... sadly that works, but means delving into unsupported functionality. Update your answer to reflect that there is currently no SUPPORTED way to do it, and I'll select your answer.
Douglas Mayle
2009-10-23 13:26:53
There is no other way to do it that I know of. UIApplication filter the status bar events. I've never heard of a supported way and I don't know if Apple likes it or not.
2009-10-24 09:11:59
A:
The only way to get status bar touches that is currently supported is to embed your view in a UIScrollView and implement scrollViewShouldScrollToTop on the scroll delegate, return NO, and treat it as a tap event...
Douglas Mayle
2009-10-28 13:18:15