How do i change navigationBar font in Swift?

前端 未结 9 1334
伪装坚强ぢ
伪装坚强ぢ 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 20:54

    Swift 4.2

    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
      // Override point for customization after application launch.
    
      let font = UIFont(name: "FontName", size: 16) ?? UIFont.systemFont(ofSize: 16)
      UINavigationBar.appearance().titleTextAttributes = [.font: font]
    }
    

提交回复
热议问题