This is not a question about how to modify a view when the double status bar is shown. Nor is it a question about how to mimic a double-height status bar within an app.
It is how to display, while an app is backgrounded, a double-height status bar. Namely, what are the preconditions and mechanisms for an app that wants to be accepted by the app store to use this functionality? Third party apps do, mostly telephony and navigation apps. Google Maps goes so far as to display turn-by-turn directions over the home view.
Now, one can do this outside legal APIs by getting the SBStatusBar class and sending it appropriate messages. The class' interface is available online. But I want to do it legitimately.
Here is one post asking the same question. The only answer is how to fake background recording, which brings up a 'recording' bar that is not controllable by the application.
Here is what I think so far: Background modes 'audio' and 'navigation' are allowed to do this. (EG, this question showing how to fake background audio recording). Again, I want to do it legitimately - so responses from developers who have done this with shipping app-store apps are greatly appreciated.
Thanks!