Black status bar turns white when quitting iPhone app - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:12:04Z http://stackoverflow.com/feeds/question/876530 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/876530/black-status-bar-turns-white-when-quitting-iphone-app 2 Black status bar turns white when quitting iPhone app Brandon Walkin 2009-05-18T07:04:16Z 2009-05-18T10:07:26Z <p>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. </p> <p>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.</p> <p>Am I missing something?</p> http://stackoverflow.com/questions/876530/black-status-bar-turns-white-when-quitting-iphone-app/876544#876544 0 Answer by Panagiotis Korros for Black status bar turns white when quitting iPhone app Panagiotis Korros 2009-05-18T07:11:32Z 2009-05-18T07:11:32Z <p>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.</p> http://stackoverflow.com/questions/876530/black-status-bar-turns-white-when-quitting-iphone-app/877013#877013 5 Answer by rpetrich for Black status bar turns white when quitting iPhone app rpetrich 2009-05-18T10:07:26Z 2009-05-18T10:07:26Z <p>Set the background color of your window to black.</p> <pre><code>[self.view.window setBackgroundColor:[UIColor blackColor]]; </code></pre>