iOS 8 - Rotation makes statusBar disappear even in portrait mode after toggling controls

后端 未结 4 966
渐次进展
渐次进展 2021-02-04 05:34

I\'m having a lot of troubles with the new auto hiding of the status bar in iOS 8.

In my app, I\'ve got a view in which when the user taps once, the navigation bar and th

4条回答
  •  时光说笑
    2021-02-04 05:51

    This worked for me:

    - (void)viewWillLayoutSubviews {
        [[UIApplication sharedApplication] setStatusBarHidden:NO withAnimation:UIStatusBarAnimationNone];
    }
    

提交回复
热议问题