If you want to implicitly set the tint and barTint color tabs then in your Appdelegate.swift ,
UITabBar.appearance().barTintColor = .orange UITabBar.appearance().tintColor = .green
If you want to set the tint and barTint color tabs for a specific viewController, then in ViewController.swift ,
self.tabBarController?.tabBar.tintColor = .orange self.tabBarController?.tabBar.barTintColor = .green
source share