What is the default background color of the navigation bar in iOS 7?

后端 未结 8 1532
星月不相逢
星月不相逢 2020-12-31 00:45

I would like to set the background color of a menu to that of the navigation bar. What is the best way to do this?

8条回答
  •  独厮守ぢ
    2020-12-31 00:47

    Swift 4

    I am not sure the color does not change from version to version. In my app I use this:

    var navBarDefaultColor: UIColor?
    
    // save:
    navBarDefaultColor = self.navigationController?.navigationBar.tintColor
    
    //restore:
    self.navigationController?.navigationBar.tintColor = navBarDefaultColor!
    

提交回复
热议问题