
How can I change the color of \"More..\" text in tabbar to match with its icon
Nowadays if your app supports version of iOS less than 13, you should set this colours different ways:
if #available(iOS 13, *) {
let appearance = UITabBarAppearance()
appearance.stackedLayoutAppearance.selected.titleTextAttributes = [NSAttributedString.Key.foregroundColor: .red]
tabBar.standardAppearance = appearance
} else {
UITabBarItem.appearance().setTitleTextAttributes(UIColor.red, for: UIControl.State.selected)
}
In code example I set red text color for selected states of UITabBarItem, you may also need to change text color for normal state.