ios默认APP的主题色是蓝色,有时候,我需要把APP的主题色改成我们需要的颜色,这时我们只需要设置一下最上面的父View的tintColor的色值就可以了。
最上面的View自然是window啦。
举个栗子:设成红色
funcapplication(_application:UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey:Any]?) ->Bool{
let root = ViewController()
window = UIWindow()
window?.rootViewController = root
window?.makeKeyAndVisible()
window?.tintColor = .red
return true
}