Skip to content

Instantly share code, notes, and snippets.

@samuelbeek
Created November 25, 2015 09:41
Show Gist options
  • Save samuelbeek/7a0aa349191fb23be47d to your computer and use it in GitHub Desktop.
Save samuelbeek/7a0aa349191fb23be47d to your computer and use it in GitHub Desktop.
Set application wide navigation bar appereance
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