How do i change navigationBar font in Swift?

前端 未结 9 1327
伪装坚强ぢ
伪装坚强ぢ 2020-12-23 20:16

How do I change the NavigationBar font in Swift?

This is what I have tried so far, but receiving an error (I have correctly implemented CaviarDreams

9条回答
  •  佛祖请我去吃肉
    2020-12-23 21:02

    Swift 4

    if let font = UIFont(name: "FontName", size: 16) {
    
     self.navigationController?.navigationBar.titleTextAttributes = [NSAttributedStringKey.font: font]
    
    }
    

    Or as the other answer recommended doing it on the AppDelegate:

      if let font = UIFont(name: "FontName", size: 16) {
    
        UINavigationBar.appearance().titleTextAttributes = [
              NSAttributedStringKey.font: font]
    
    }
    

提交回复
热议问题