Black status bar turns white when quitting iPhone app - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T07:12:04Zhttp://stackoverflow.com/feeds/question/876530http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/876530/black-status-bar-turns-white-when-quitting-iphone-app2Black status bar turns white when quitting iPhone appBrandon Walkin2009-05-18T07:04:16Z2009-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#8765440Answer by Panagiotis Korros for Black status bar turns white when quitting iPhone appPanagiotis Korros2009-05-18T07:11:32Z2009-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#8770135Answer by rpetrich for Black status bar turns white when quitting iPhone apprpetrich2009-05-18T10:07:26Z2009-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>