vote up 2 vote down star
1

I gave my iPhone app a black status bar by adding the UIStatusBarStyleOpaqueBlack / UIStatusBarStyle to the Info.plist file. It works great most of the time. The black status bar shows when the app is running and when the Default.png is being shown.

The issue is when I quit the app by pressing the home button, the status bar becomes a white block while the iPhone's standard quit animation is taking place. I haven't seen this issue with any other apps that use a black status bar.

Am I missing something?

flag
FWIW, I have seen this behavior with a couple of iPhone apps, so it's not just you. – Kristopher Johnson May 18 at 16:58
This has been bugging me for ages -- thanks for asking! – Stephen Darlington May 20 at 19:20

2 Answers

vote up 5 vote down check

Set the background color of your window to black.

[self.view.window setBackgroundColor:[UIColor blackColor]];
link|flag
This works. Thanks. – Brandon Walkin May 18 at 17:13
Kind of obvious in hindsight! Thanks for the solution. – Stephen Darlington May 20 at 19:21
vote up 0 vote down

This sound like a bug to me. Even if your application was misbehaving, the iPhone OS should not be affected when your application is not running anymore.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.