iOS 18 introduced the elevated tab bar for iPad devices. However, the tint color for UITabBar items is not changing. Adjusting the barTintColor
and tintColor
properties of the tab bar items does not seem to have any effect.
The tab bar's text color (and image color) will inherit from the tintColor
of the UITabBarController's view. Setting tabBarController.view.tintColor = ..."
will allow you change that. Unfortunately, the background color of the bar cannot be changed and will respect the system appearance (or current user interface style) instead.