UINavigationBar-preferredsLargeTitles-如何在标题左侧设置图像?

时间:2018-11-09 13:53:26

标签: ios swift uinavigationbar

以下文章显示了如何在导航标题的右侧添加图像。 https://blog.uptech.team/how-to-build-resizing-image-in-navigation-bar-with-large-title-8ba2e8bcb840

我想将图像添加到导航栏标题的左侧。为此,我为imageView设置了leftAnchor而不是right锚,如下所示。

imageView.leftAnchor.constraint(equalTo: navigationBar.leftAnchor, constant: Const.ImageRightMargin)

该图像显示在导航栏标题上方,这不是我想要的。我希望图像与标题(标题左侧)在同一行。

注意:

  1. 我还看到了其他有关在标题上添加图像的问题 查看,但该问题专门要求提供有关 在标题左侧添加图片。因此,这个问题 不是重复的。
  2. 我知道我可以像下面那样设置自定义标题视图,但我不这样做 想要丢失导航栏的preferredsLargeTitles设置。

    self.navigationItem.titleView = customTitleView

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

import UIKit

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()

        let img = UIImage.init(named: "imgName")

        let imgView = UIImageView(frame: CGRect(x: 0, y: 0, width: 30, height: 30))

        imgView.image = img!

        imgView.contentMode = .scaleAspectFit

        let item = UIBarButtonItem.init(customView: imgView)

        let negativeSpacer = UIBarButtonItem.init(barButtonSystemItem: .fixedSpace, target: nil, action: nil)

        navigationItem.leftBarButtonItems = [negativeSpacer, item]

    }
}

结果

enter image description here

如果要在单击图像时执行请求,请替换此行

let negativeSpacer = UIBarButtonItem.init(barButtonSystemItem: .fixedSpace, target: nil, action: nil)

与那一行

let negativeSpacer = UIBarButtonItem.init(barButtonSystemItem: .fixedSpace, target: self, action: #selector(go))

并放置

@objc func go() {

    print("go")
}