iOS 7 Status Bar Collides With NavigationBar

前端 未结 17 1318
攒了一身酷
攒了一身酷 2020-11-28 03:14

I have a view controller in my app that has a navigation bar dragged on it in the storyboard. It was working fine in the iOS 6 but in iOS 7 it look like this:

17条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 03:30

    This works for me i hope you also have same luck :).
    Add below code in your view.

    -(void) viewDidLayoutSubviews
    {
        CGRect tmpFram = self.navigationController.navigationBar.frame;
        tmpFram.origin.y += 20;
        self.navigationController.navigationBar.frame = tmpFram;
    }
    

    It basically change location of navigation bar.

提交回复
热议问题