Remove status bar on splash screen

ios, objective-c, xcode5

Solution

Add the following property (`UIStatusBarHidden`) in your Info `plist` file:

Status bar is initially hidden

with a value of `YES`.

Problem

I'm using xCode 5. I want to hide the status bar exclusively during the Launch Screen. How can I do that? I tried to set 'View controller-based status bar appearance' to NO into info.plist file. and disabled 'hide during application launch' in general from project file (iOS 7).

Original source