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

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

        • <bdo id='EdmCv'></bdo><ul id='EdmCv'></ul>

        在导航栏左侧添加标题

        时间:2023-06-11

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

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

            1. <tfoot id='GGOFR'></tfoot>
              • <bdo id='GGOFR'></bdo><ul id='GGOFR'></ul>

                  <legend id='GGOFR'><style id='GGOFR'><dir id='GGOFR'><q id='GGOFR'></q></dir></style></legend>
                  本文介绍了在导航栏左侧添加标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  是否可以在导航栏的左侧添加标题?我知道如何在中心添加标题,但是当我尝试在左侧添加标题时,我什么也看不到.这是我的代码:

                  Is it possible to add a title to the left side of the navigation bar? I know how I can add a title in the center but when I try to add one to the left side I see nothing. This is the code I have:

                  self.navigationItem.leftBarButtonItem?.title = "Elapsed Time: 0:00"
                  

                  感谢您的帮助.

                  推荐答案

                  试试这个代码:

                  let leftItem = UIBarButtonItem(title: "Title",
                                                     style: UIBarButtonItemStyle.plain,
                                                     target: nil,
                                                     action: nil)
                      leftItem.isEnabled = false
                      self.navigationItem.leftBarButtonItem = leftItem
                  

                  这个问题更强大的解决方案:

                  More powerful solution of this problem:

                  let longTitleLabel = UILabel()
                      longTitleLabel.text = "Long long long long long long title"
                      longTitleLabel.font = ................
                      longTitleLabel.sizeToFit()
                  
                      let leftItem = UIBarButtonItem(customView: longTitleLabel)
                      self.navigationItem.leftBarButtonItem = leftItem
                  

                  现在您可以根据需要编辑标签.您可以使用其他字体或文本颜色.

                  Now you just can edit label as you want. You can use another font or text color.

                  这篇关于在导航栏左侧添加标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:iPhone 应用中的全局 ADBannerView 下一篇:在 UINavigationController 的 UINavigationBar 内部或顶部显示 UIProgres

                  相关文章

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

                    • <bdo id='er5JN'></bdo><ul id='er5JN'></ul>

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

                    <tfoot id='er5JN'></tfoot>
                      <legend id='er5JN'><style id='er5JN'><dir id='er5JN'><q id='er5JN'></q></dir></style></legend>