When hiding the statusbar my navigation bar moves up in iOS7

前端 未结 5 693
逝去的感伤
逝去的感伤 2021-01-31 16:05

I am trying to hide the statusbar but maintain the \"bigger\" navigationbar height. Right now when I hide the statusbar by setting - (BOOL)prefersStatusBarHidden to

5条回答
  •  感动是毒
    2021-01-31 16:41

    Add this code in your view Controller:

    if ([self respondsToSelector:@selector(setEdgesForExtendedLayout:)])
    {
        self.edgesForExtendedLayout = UIRectEdgeNone;
    }
    

提交回复
热议问题