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:
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)