美文网首页
UITabBar设置背景色以及UITabBarItem选中和未选

UITabBar设置背景色以及UITabBarItem选中和未选

作者: KnowWhy | 来源:发表于2018-05-26 19:54 被阅读0次
  • 设置背景色
tabBar.barTintColor = UIColor.white
  • UITabBarItem选中和未选中时title颜色
UITabBarItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName : UIColor.blue], for: .normal)
UITabBarItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName : UIColor.red], for: .selected)

相关文章

网友评论

      本文标题:UITabBar设置背景色以及UITabBarItem选中和未选

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