Created
November 25, 2015 09:41
-
-
Save samuelbeek/7a0aa349191fb23be47d to your computer and use it in GitHub Desktop.
Set application wide navigation bar appereance
This file contains 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: [NSObject: AnyObject]?) -> Bool { | |
UINavigationBar.appearance().tintColor = UIColor.whiteColor() | |
UINavigationBar.appearance().barStyle = UIBarStyle.Black | |
// rest of the didFinishLaunch stuff | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment