设置UITabBarItem文字颜色
// 常态颜色
UITabBarItem.appearance().setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.gray], for: .normal)
// 选择颜色 UITabBarItem.appearance().setTitleTextAttributes([NSAttributedString.Key.foregroundColor: UIColor.red], for: .selected)
同时修改UITabBarItem文字与图片
self.tabBar.tintColor = UIColor.orange
网友评论