0

How do I get rid of the status bar, using Xcode 5 and developing for the iPhone. I need to get the status bar out of my app.

sara
  • 3,824
  • 9
  • 43
  • 71
  • possible duplicate of [Hiding status bar IOS](http://stackoverflow.com/questions/18834318/hiding-status-bar-ios) – iAhmed Sep 30 '13 at 18:52
  • possible duplicate of [How to hide a status bar in iOS?](http://stackoverflow.com/questions/12661031/how-to-hide-a-status-bar-in-ios) – Ortwin Gentz Oct 02 '13 at 10:18

1 Answers1

0

In your Info.plist file set:

[[UIApplication sharedApplication] setStatusBarHidden:YES];
sara
  • 3,824
  • 9
  • 43
  • 71