iOS 7 status bar back to iOS 6 default style in iPhone app?

前端 未结 25 1198
终归单人心
终归单人心 2020-11-22 05:48

In iOS 7 the UIStatusBar has been designed in a way that it merges with the view like this:

\"GUI

25条回答
  •  执念已碎
    2020-11-22 06:32

    I used this in all my view controllers, it's simple. Add this lines in all your viewDidLoad methods:

    - (void)viewDidLoad{
        //add this 2 lines:
        if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
            self.edgesForExtendedLayout = UIRectEdgeNone;
    
        [super viewDidLoad];
    }
    

提交回复
热议问题