我必须为swift中的视图着色导航栏,但使用色调改变颜色变得越来越困难。视图中的底部颜色是我需要的最终结果,但是在viewDidLoad中设置它会使它变得不同。任何人都可以指点我的方向吗?
override func viewDidLoad() {
super.viewDidLoad()
...
switch category {
case "Corn Management":
// color to be determined
break
case "Soybean Management":
navigationController?.navigationBar.barTintColor = UIColor(red: 153.0/255.0, green: 50.0/255.0, blue: 30.0/255.0, alpha: 1.0)
break
default:
break
}
self.title = category
}
答案 0 :(得分:0)
我认为它有所不同,因为导航栏是半透明的。您需要从该链接应用公式: http://b2cloud.com.au/how-to-guides/bar-color-calculator-for-ios7-and-ios8/ 希望它有所帮助。