iOS 7 Status Bar Collides With NavigationBar

前端 未结 17 1291
攒了一身酷
攒了一身酷 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条回答
  •  暖寄归人
    2020-11-28 03:41

    I suggest you in your viewDidLoad method you try:

    self.navigationController.navigationBar.translucent = NO;
    

    (by default it is yes now)

    https://developer.apple.com/library/ios/documentation/uikit/reference/UINavigationBar_Class/Reference/UINavigationBar.html#//apple_ref/occ/instp/UINavigationBar/translucent

提交回复
热议问题