iOS7 Status Bar over Navigation Bar

2019-03-18 14:10发布

I'm testing my application with iOS7 and I have an issue with status bar. Basically the status bar appear over navigation bar like the image below:

iOS7 Status Bar Issue

I try to call in my viewDidLoad

 self.edgesForExtendedLayout = UIRectEdgeNone;
 self.automaticallyAdjustsScrollViewInsets = YES;

without success.

I have also added to the info.plist file UIViewControllerBasedStatusBarAppearance with no luck.

The main problem is that the application must be compatible with iOS6 and iOS7 and currently on iOS7 the view shifted 20px from the top.

5条回答
狗以群分
2楼-- · 2019-03-18 14:49

Add an outlet to the UINavigationBar.

float currentVersion = 7.0;

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= currentVersion) {
    // iOS 7
    self.navBar.frame = CGRectMake(self.navBar.frame.origin.x, self.navBar.frame.origin.y, self.navBar.frame.size.width, 64);
}

You can also hide the status bar, this might be a better approach on these views to get more screen real estate.

I answered that here:

Position of navigation bar for modal view - iOS7

查看更多
聊天终结者
3楼-- · 2019-03-18 14:49

This is the biggest issue that comes with iOS 7 and there are many solutions to solve this but in my opinion, the best way to solve is to remove the navigation bar and embed your view controller in a navigation controller by going to Editor > Embed In Navigation Controller.

查看更多
smile是对你的礼貌
4楼-- · 2019-03-18 14:55

Hi I had a similar problem please see this thread where I had posted the code in the AppleDelegate code, really helped me

查看更多
\"骚年 ilove
5楼-- · 2019-03-18 15:01

edgesForExtendedLayout and automaticallyAdjustsScrollViewInsets are just standards for how parent view controllers lay out / manage the view. It looks like you're using a UINavigationBar, but not a UINavigationController, which means these properties won't do anything unless you code them to.

You can switch to use a UINavigationController, or you can programmatically change the height of your UINavigationBar from 44 to 64 on iOS 7.

查看更多
Summer. ? 凉城
6楼-- · 2019-03-18 15:06

Add constraints top space to top layout guide

enter image description here

查看更多
登录 后发表回答