How do i change navigationBar font in Swift?

前端 未结 9 1194
伪装坚强ぢ
伪装坚强ぢ 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:19

    Using Swift, I added this to AppDelegate.swift in

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
            // Override point for customization after application launch.
    
            UINavigationBar.appearance().titleTextAttributes = [
                NSFontAttributeName: UIFont(name: "DINNextLTW04-Regular", size: 20)!
            ]
    
            return true
        }
    

    Hope it helps!

提交回复
热议问题