Search code examples
iosswiftfontsuitabbarcontroller

swift change tab bar title font


I wonder how I can change the font and size of title in my tabs when I use tab bar.

I have looked in the docs and I cant find anything about title font and size - source


Solution

  • You can change it via the appearance proxy:

    let font: UIFont = ...
    UITabBarItem.appearance().setTitleTextAttributes([NSFontAttributeName: font], forState: .Normal)
    

    Swift 4:

    UITabBarItem.appearance().setTitleTextAttributes([NSAttributedStringKey.font: font], for: .normal)
    

    You should put this in your app delegate in func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool