全局设置UINavigationBar?

时间:2016-11-28 13:43:34

标签: ios swift uinavigationbar

我正在尝试全局更改UINavigationBar个实例,下面的代码位于DidFinishLaunchingWithOptions(:_);

let navBarApp = UINavigationBar.appereance()
navBarApp.barTintColor = UIColor.mmtRed

但结果是;

figure1

从图片中可以看出,颜色是不同的,意思是相同的。 (按钮的颜色是我想要导航栏的颜色。)

当我按如下方式添加代码时:

navBarApp.isTranslucent = false

结果是;

figure2

现在颜色相同,但UINavigationBarmainView之间存在奇怪的差距。那么我该如何解决呢?有什么想法吗?

编辑:

忘了提到我正在使用图书馆PageMenu也许这会产生某种影响?

2 个答案:

答案 0 :(得分:1)

尝试在viewController的automaticallyAdjustsScrollViewInsets中设置此属性viewDidLoad()

override func viewDidLoad() {
    automaticallyAdjustsScrollViewInsets = false
}

或更好地确保在所有控制器中调整Scroll View插图

enter image description here

如果在rootViewController中设置,请确保在子控制器中不覆盖此属性

更新:

上述解决方案应该适用于大多数场景,或者您可以设置backGroundImage而不是像@WilsonXJ答案中那样使条形半透明。

您可以使用扩展程序

extension UIImage {
   static func imageWithColor(tintColor: UIColor) -> UIImage {
        let rect = CGRect(x: 0, y: 0, width: 1, height: 1)
        UIGraphicsBeginImageContextWithOptions(rect.size, false, 0)
        tintColor.setFill()
        UIRectFill(rect)
        let image: UIImage = UIGraphicsGetImageFromCurrentImageContext()!
        UIGraphicsEndImageContext()
        return image
    }
}

将其用作

navBarApp.setBackgroundImage(UIImage.imageWithColor(tintColor: <Custom color>), for: .default)

答案 1 :(得分:0)

试试这个:

let rect = CGRect(x: 0, y: 0, width: 1, height: 1)
UIGraphicsBeginImageContextWithOptions(rect.size, false, 0)
UIColor.redColor().setFill()// your color
UIRectFill(rect)
let image:UIImage = UIGraphicsGetImageFromCurrentImageContext()!
UIGraphicsEndImageContext()
let navBar = UINavigationBar.appearance()
navBar.setBackgroundImage(image, forBarMetrics: .Default)

它对我有用