我已经以编程方式创建了tabBarController,并且我想要更改选项卡包含的图像(不是条形)的色调颜色。谁能告诉我如何在Swift中做到这一点?
答案 0 :(得分:47)
在您的应用中:didFinishLaunchingWithOptions'
(window?.rootViewController as! UITabBarController).tabBar.tintColor = UIColor.red
或使用外观委托。
UITabBar.appearance().tintColor = UIColor.red
答案 1 :(得分:4)
答案 2 :(得分:0)
转到AppDelegate.swift文件。在“ application:didFinishLaunchingWithOptions”中输入:
UITabBar.appearance().unselectedItemTintColor = UIColor.red