Swift – iOS:更改导航栏的颜色

前端之家收集整理的这篇文章主要介绍了Swift – iOS:更改导航栏的颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试更改导航栏的颜色,但我发现如果导航器是根导的话,这是不可能的.

我正在尝试这个:

  1. self.navigationController?.navigationBar.translucent = true
  2.  
  3. self.navigationController!.navigationBar.barTintColor = UIColor.blueColor()

我的所有Viewcontrollers都与导航控制器有关.然而,没有任何改变.事实上,我试图从故事板中制作相同的东西,但只有当我在第一个导航器中时才有效.

我试图阅读与此问题相关的所有内容,但一无所获

我可以像这样添加任何项目到导航栏

  1. let HomeImage = UIImage(named: "home")!
  2. let Home : UIBarButtonItem = UIBarButtonItem(image: HomeImage,style: .Plain,target: self,action: "home:")
  3. navigationItem.rightBarButtonItem = Home
事实上,我发现解决方案是在AppDelegate.siwft中使用:
  1. func application(application: UIApplication,didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
  2. // Override point for customization after application launch.
  3. UINavigationBar.appearance().barTintColor = UIColor(red: 0,green: 0/255,blue: 205/255,alpha: 1)
  4. UINavigationBar.appearance().tintColor = UIColor.whiteColor()
  5. UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName:UIColor.whiteColor()]
  6.  
  7. return true
  8. }

然后在每个视图控制器中,我们需要另一种背景颜色或其他东西

> segue应该与“show”不同
>使用func viewWillAppear

  1. override func viewWillAppear(animated: Bool) {
  2. super.viewWillAppear(animated)
  3. self.navigationController?.navigationBar.barTintColor = UIColor.whiteColor()
  4. self.navigationController?.navigationBar.tintColor = UIColor.blueColor()
  5. self.navigationController!.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName: UIColor.blueColor()]
  6. }

猜你在找的Swift相关文章