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?
UIScrollView and UIWebView both have special handlers for when the user clicks on the
Share
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…