Tab bar appearance for iphone and ipad for both image and text color in normal and selected mode iOS swift
Solution:
You can able to change the bar appearance for iphone and ipad for both image and text color in normal and selected mode
let tabBarAppearance = UITabBarAppearance()
let tabBarItemAppearance = UITabBarItemAppearance()
        tabBarItemAppearance.normal.ic
        tabBarItemAppearance.normal.ti
        tabBarAppearance.stackedLayout
self.tabBar.standardAppearance = tabBarAppearance
The above code will works for iphone But in ipad you want to add the below code
        tabBarAppearance.inlineLayoutA
Comments
Post a Comment