Changing font size of tabbaritem

后端 未结 10 1788
忘掉有多难
忘掉有多难 2020-11-30 06:18

Is it possible to change the font size of tabs?

10条回答
  •  天命终不由人
    2020-11-30 07:08

    IN Swift 4

     override func viewDidLoad() {
            super.viewDidLoad()
            let appearance = UITabBarItem.appearance()
            let attributes: [NSAttributedString.Key: AnyObject] = [NSAttributedString.Key(rawValue: NSAttributedString.Key.font.rawValue):UIFont(name: "American Typewriter", size: 12)!, NSAttributedString.Key(rawValue: NSAttributedString.Key.foregroundColor.rawValue): UIColor.orange]
            appearance.setTitleTextAttributes(attributes, for: .normal)
    
        }
    

提交回复
热议问题