Changing tab bar font in Swift

后端 未结 7 1121
南方客
南方客 2020-12-16 10:03

I have been trying to change the font for the tab bar items however I haven\'t been able to find any Swift examples. I know that this is how you change it in Objective-C:

7条回答
  •  不知归路
    2020-12-16 11:01

    Swift 5

    let appearance = UITabBarItem.appearance()
    let attributes = [NSAttributedString.Key.font:UIFont(name: "American Typewriter", size: 20)]
    appearance.setTitleTextAttributes(attributes as [NSAttributedString.Key : Any], for: .normal)
    

提交回复
热议问题