Skip to content

Instantly share code, notes, and snippets.

@nishabe
Created September 8, 2018 22:10
Show Gist options
  • Save nishabe/38163216e04aa4119578f50f7c939c74 to your computer and use it in GitHub Desktop.
Save nishabe/38163216e04aa4119578f50f7c939c74 to your computer and use it in GitHub Desktop.
SWIFT: Set Tint for Application
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
// Configure Window
window?.tintColor = UIColor(red:0.99, green:0.47, blue:0.44, alpha:1.0)
return true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment