One of the standard gestures in iOS is, by tapping the status bar (the bar at the top of the screen with your signal level, battery strength, etc.), that will automatically scroll any content (e.g. in a table view, scroll view, etc.) to the top.
I'm writing an app that interfaces with a chat server. As new chat messages are received, they get added to the bottom of a UITextView. The user can scroll back to look at previous chat history of course.
Is it possible to override the "tap the status bar" shortcut so that instead of scrolling to the top, it instead can call one of my own methods? (I have a method in my view controller that automatically scrolls the chat window to the bottom).