Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove status bar on splash screen [closed]

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).

like image 965
Taj rajan Avatar asked Jan 08 '14 10:01

Taj rajan


2 Answers

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

Status bar is initially hidden

with a value of YES.

like image 94
2intor Avatar answered Oct 25 '22 11:10

2intor


and disabled 'hide during application launch'

You should actually enable that option if you do not want to see the status bar during launch. This will set the proper property in the Info.plist file.

Not sure if "View controller-based status bar appearance" is really relevant for this. This should only make a difference once your controllers are on screen.

like image 35
sergio Avatar answered Oct 25 '22 11:10

sergio