iOS 7 Status Bar Collides With NavigationBar

前端 未结 17 1220
攒了一身酷
攒了一身酷 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

    0 讨论(0)
  • 2020-11-28 03:44

    Using Swift:

    As @Scott Berrevoets said in his answer you need to implement the method positionForBar in the protocol UIBarPositioningDelegate, but as the UINavigationBarDelegate protocol implements this protocol :

    public protocol UINavigationBarDelegate : UIBarPositioningDelegate {
       ...
    }
    

    You only need to set the delegate of the UINavigationBar you set using Storyboard and implement the method and it's done, like in this way:

    class ViewController: UIViewController, UINavigationBarDelegate {
    
       @IBOutlet weak var navigationBar: UINavigationBar!
    
       override func viewDidLoad() {
           super.viewDidLoad()
           self.navigationBar.delegate = self 
       }
    
       override func didReceiveMemoryWarning() {
           super.didReceiveMemoryWarning()
           // Dispose of any resources that can be recreated.
       }
    
       func positionForBar(bar: UIBarPositioning) -> UIBarPosition {
           return UIBarPosition.TopAttached
       }
    }
    

    NOTE: It's worth to mention if you set the position of the y-axis of the navigation bar, let's say to 40 from the top, then it will extend underneath to the top from this position, to simulate the behaviour of the UINavigationController you need to set to 20 from the top.

    I hope it will help you.

    0 讨论(0)
  • 2020-11-28 03:44

    In iOS 7 app occupies 100 % of screen size.This not a problem . http://www.doubleencore.com/2013/09/developers-guide-to-the-ios-7-status-bar/

    0 讨论(0)
  • 2020-11-28 03:44

    I was facing issue when full screen ModalViewController was opening from my MainViewController, NavigationBar position was getting changed when user was coming back to MainViewController from ModalViewController.

    Issue which I noticed is status bar height was not getting included when user came back to MainViewController. Please debug and check origin of your NavigationBar before and after coming back to your ViewController.

    // This method will adjust navigation bar and view content.
        private func adjustNavigationControllerIfNeeded() {
    
            var frame = self.view.frame
            let navigationBarHeight = self.navigationController!.navigationBar.frame.size.height
    
            if(frame.origin.y == navigationBarHeight && !UIApplication.shared.isStatusBarHidden) { 
    
       // If status bar height is not included but it is showing then we have to adjust 
          our Navigation controller properly
    
                print("Adjusting navigation controller")
                let statusBarHeight = UIApplication.shared.statusBarFrame.height
    
                frame.origin.y += statusBarHeight // Start view below navigation bar
                frame.size.height -= statusBarHeight
                self.view.frame = frame
    
                self.navigationController!.navigationBar.frame.origin.y = statusBarHeight // Move navigation bar
            }
        }
    

    And call it from viewWillAppear method -

    override func viewWillAppear(_ animated: Bool) {
    
            super.viewWillAppear(animated)
            self.adjustNavigationControllerIfNeeded()
    }
    
    0 讨论(0)
  • 2020-11-28 03:46

    The latest version of the iOS has brought many visual changes and from a developer's point of view, the navigation and status bar are two noticeable changes.

    The status bar is now transparent and navigation bar behind it shows through. The navigation bar image can even be extended behind the status bar.

    First of all, if you are a beginner and have just started iOS development and are confused the way status bar and navigation bar is working, you can simply go through a blog post HERE that i found very useful. It has all the information related to navigation and status bar in iOS 7.

    Now coming to the answer of your question. First of all i can see two different problems. One is that your status bar and navigation bar are both kind of colliding with each other as shown by you in the question with an image.

    PROBLEM: Well the problem is that your have earlier dragged a navigation bar in your view controller which was working in iOS 6 correctly but with the arrival of iOS 7 SDK, this approach is resulting in status bar and navigation bar overlapping with each other.

    SOLUTION to First Problem: You can either use UIBarPositionTopAttached or you can use view bounds and frames, i can also suggest and link you to Apple's documentation and bla bla bla but that would take some time for you to solve the issue.

    The best and the most easiest way to solve this issue is to just embed your view controller inside a navigation controller and thats it. You can do it by just selecting the view controller and going to Editor > Embed In > Navigation Controller. (If there is any content on your old navigation bar, you can first drag it down, embed the view controller in navigation controller and then move the bar buttons on the new navigation bar and then delete the old navigation bar)

    SOLUTION to Second Problem: This solution is for your specific question that you have mentioned in the update and is not for the general public reading this. As you can see that navigation and status bar is not visible and a transparent area is showing the parent view controller. I am not really use why you are facing this issue but most probably because of some third party library like ECSlidingView or any other is involved. You can select this view controller in your storyboard and set the background color of the view to be the same as your navigation bar. This will stop showing the parent view controller behind and your navigation bar and status bar will start showing. Now you can cover the rest of your view controller with text view or what ever your are using in it.

    Hope this helps!

    0 讨论(0)
  • 2020-11-28 03:48

    you can simply do this:

    1) add a constrain between the Navigation Bar and Top Layout Guide (select navigationBar, hold ctrl key and go to Bottom Layout Guide, unhold ctrl key)

    Add vertical Contrain

    2) select vertical spacing:

    vertical spacing

    3) set constant to 0:

    vertical spacing constant

    Result:

    result

    UPDATE

    In your AppDelegate file you can add this:

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool 
    {
      // Prevent Navigationbar to cover the view
      UINavigationBar.appearance().translucent = false
    }
    
    0 讨论(0)
提交回复
热议问题