Skip to content

Instantly share code, notes, and snippets.

@mpycio
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mpycio/ddbdea1adb6b86cf02f6 to your computer and use it in GitHub Desktop.
Save mpycio/ddbdea1adb6b86cf02f6 to your computer and use it in GitHub Desktop.
transparent navigation bar using appeareance
[[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
[[UINavigationBar appearance] setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
[[UINavigationBar appearance] setShadowImage:[UIImage new]];
[[UINavigationBar appearance] setTitleTextAttributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment