iOS7 Status Bar over Navigation Bar

前端 未结 4 1616
感情败类
感情败类 2021-02-08 06:13

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:

4条回答
  •  孤城傲影
    2021-02-08 06:55

    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

提交回复
热议问题