Can I set image as a title to UINavigationBar?

后端 未结 16 1835
有刺的猬
有刺的猬 2020-12-07 09:38

Is it possible to set some image as title of Navigation bar?

I think NYTimes application used a Navigation bar and title is look like image file (the reason why it\'

16条回答
  •  一整个雨季
    2020-12-07 10:13

    Add image to naviagtionBar with SWIFT that scales to fit and clips to bounds. You can call this function inside the view controllers viewDidLoad() function.

    func setupNavigationBarWithTitleImage(titleImage: UIImage) {
    
        let imageView = UIImageView(image: titleImage)
        imageView.contentMode = .ScaleAspectFit
        imageView.clipsToBounds = true
        navigationItem.titleView = imageView
    
    }
    

提交回复
热议问题