<bdo id='EnRgC'></bdo><ul id='EnRgC'></ul>

    <legend id='EnRgC'><style id='EnRgC'><dir id='EnRgC'><q id='EnRgC'></q></dir></style></legend>
    <i id='EnRgC'><tr id='EnRgC'><dt id='EnRgC'><q id='EnRgC'><span id='EnRgC'><b id='EnRgC'><form id='EnRgC'><ins id='EnRgC'></ins><ul id='EnRgC'></ul><sub id='EnRgC'></sub></form><legend id='EnRgC'></legend><bdo id='EnRgC'><pre id='EnRgC'><center id='EnRgC'></center></pre></bdo></b><th id='EnRgC'></th></span></q></dt></tr></i><div id='EnRgC'><tfoot id='EnRgC'></tfoot><dl id='EnRgC'><fieldset id='EnRgC'></fieldset></dl></div>

    <small id='EnRgC'></small><noframes id='EnRgC'>

    <tfoot id='EnRgC'></tfoot>
      1. 如何全局更改 UINavigationBar 颜色?

        时间:2023-06-12
      2. <i id='YiZ0Y'><tr id='YiZ0Y'><dt id='YiZ0Y'><q id='YiZ0Y'><span id='YiZ0Y'><b id='YiZ0Y'><form id='YiZ0Y'><ins id='YiZ0Y'></ins><ul id='YiZ0Y'></ul><sub id='YiZ0Y'></sub></form><legend id='YiZ0Y'></legend><bdo id='YiZ0Y'><pre id='YiZ0Y'><center id='YiZ0Y'></center></pre></bdo></b><th id='YiZ0Y'></th></span></q></dt></tr></i><div id='YiZ0Y'><tfoot id='YiZ0Y'></tfoot><dl id='YiZ0Y'><fieldset id='YiZ0Y'></fieldset></dl></div>
        <tfoot id='YiZ0Y'></tfoot>
            <tbody id='YiZ0Y'></tbody>

          1. <small id='YiZ0Y'></small><noframes id='YiZ0Y'>

            <legend id='YiZ0Y'><style id='YiZ0Y'><dir id='YiZ0Y'><q id='YiZ0Y'></q></dir></style></legend>
              <bdo id='YiZ0Y'></bdo><ul id='YiZ0Y'></ul>
                  本文介绍了如何全局更改 UINavigationBar 颜色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想从 AppDelegate 为整个应用程序全局更改 UINavigationBar 颜色.我这样做:

                  I want to change UINavigationBar color globally for the whole application from the AppDelegate. For it I do:

                  func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject : AnyObject]?) -> Bool {
                  UINavigationBar.appearance().tintColor = UIColor(red: 63, green: 172, blue: 236, alpha: 1)
                  }
                  

                  但是,我不知道为什么,它并没有改变我的导航栏的颜色.

                  but, I do not know why, it doesn't change the color of my Navigation bar.

                  我已将导航栏连接为 Editor >嵌入 >导航控制器

                  如何设置导航栏的颜色?

                  How can I set the color for NavBar?

                  推荐答案

                  set barTintColor

                  UINavigationBar.appearance().barTintColor = UIColor(red: 63.0/255.0, green: 172.0/255.0, blue: 236.0/255.0, alpha: 1.0)
                  

                  我想你忘了除以 255

                  I think you forgot to divide with 255

                  用于关闭半透明.在您的第一个根控制器中执行以下操作.

                  For turn off the translucent. In your first root controller do it as follows.

                  override func viewDidLoad() {
                      super.viewDidLoad()
                      self.navigationController!.navigationBar.translucent = false
                  }
                  

                  斯威夫特 3:

                  override func viewDidLoad() {
                      super.viewDidLoad()
                      self.navigationController!.navigationBar.isTranslucent = false
                  }
                  

                  我的输出:

                  这篇关于如何全局更改 UINavigationBar 颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:为 UIRefreshControl 提供顶部插图 下一篇:UINavigationBar 以按钮为标题.

                  相关文章

                  • <bdo id='H3CVx'></bdo><ul id='H3CVx'></ul>
                1. <legend id='H3CVx'><style id='H3CVx'><dir id='H3CVx'><q id='H3CVx'></q></dir></style></legend>
                    <tfoot id='H3CVx'></tfoot>

                    <small id='H3CVx'></small><noframes id='H3CVx'>

                    1. <i id='H3CVx'><tr id='H3CVx'><dt id='H3CVx'><q id='H3CVx'><span id='H3CVx'><b id='H3CVx'><form id='H3CVx'><ins id='H3CVx'></ins><ul id='H3CVx'></ul><sub id='H3CVx'></sub></form><legend id='H3CVx'></legend><bdo id='H3CVx'><pre id='H3CVx'><center id='H3CVx'></center></pre></bdo></b><th id='H3CVx'></th></span></q></dt></tr></i><div id='H3CVx'><tfoot id='H3CVx'></tfoot><dl id='H3CVx'><fieldset id='H3CVx'></fieldset></dl></div>