views:

114

answers:

1

I hide the status bar in applicationDidFinishLaunching using

[[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO];

That works fine except the status bar is there while the app is loading. Meaning, when the default.png is displayed, I see the status bar. Is there a way to have the status bar not show at all?

A: 

See http://stackoverflow.com/questions/900795/why-is-the-status-bar-still-showing-during-default-png.

ceejayoz
That definitely doesn't work in iPhone OS 3.0.
4thSpace