美文网首页
设置Tabbar字体颜色

设置Tabbar字体颜色

作者: 贼海鸥 | 来源:发表于2020-07-06 11:55 被阅读0次

    不废话,直接上代码

    func setTabBarTitleColor() {
            if #available(iOS 13.0, *) {
                UITabBar.appearance().tintColor = UIColor.red
                UITabBar.appearance().unselectedItemTintColor = UIColor.black
            } else {
                UITabBarItem.appearance().setTitleTextAttributes([NSAttributedString.Key.foregroundColor : UIColor.black], for: .normal)
                UITabBarItem.appearance().setTitleTextAttributes([NSAttributedString.Key.foregroundColor : UIColor.red], for: .selected)
            }
        }
    

    相关文章

      网友评论

          本文标题:设置Tabbar字体颜色

          本文链接:https://www.haomeiwen.com/subject/mfswqktx.html