Created
September 8, 2018 22:10
-
-
Save nishabe/38163216e04aa4119578f50f7c939c74 to your computer and use it in GitHub Desktop.
SWIFT: Set Tint for Application
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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