0

I'm developing an application for iOS 7.

I want to make the system bar (see the following screenshot) disappear like Facebook's Paper does on it's main screen.

System bar

I know how to change the bar's background color with a transition but not how make the bar completely disappear.

Antoine
  • 1,782
  • 1
  • 14
  • 32

2 Answers2

0

You can set these values

In app Delegate :

- (BOOL)prefersStatusBarHidden {
      return YES;
}

in viewWillAppear :

[UIApplication sharedApplication].statusBarHidden = YES;
Himanshu Parashar
  • 478
  • 1
  • 6
  • 18
0

add "View controller-based status bar appearance = NO" in your .plist file.

and also add Status bar is initially hidden = YES

that works for me.

Mohit
  • 3,708
  • 2
  • 27
  • 30
Hitendra
  • 1,610
  • 1
  • 15
  • 22