Changing font size of tabbaritem

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

Is it possible to change the font size of tabs?

10条回答
  •  不知归路
    2020-11-30 06:57

    I think this in Swift gives a clear control over the tab bar colors and text attributes.

    class MyTabBarController: UITabBarController {
    
      override func viewDidLoad() {
        super.viewDidLoad()
        tabBar.barTintColor = UIColor.green
    
        UITabBarItem.appearance().setTitleTextAttributes(
            [NSAttributedString.Key.font:UIFont.boldSystemFont(ofSize: 18), 
               NSAttributedString.Key.foregroundColor: UIColor.orange], for: .normal)
    ...             
    

提交回复
热议问题