Skip to content

Instantly share code, notes, and snippets.

@sag333ar
Created October 19, 2015 07:57
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 sag333ar/a9cefbb6ffc245f5cbd1 to your computer and use it in GitHub Desktop.
Save sag333ar/a9cefbb6ffc245f5cbd1 to your computer and use it in GitHub Desktop.
Transparent Navigation Bar
- (void)applyTransparencyToNavigationControllersBar:(UINavigationController *)nvCtr {
nvCtr.navigationBar.translucent = YES;
nvCtr.navigationBar.shadowImage = [UIImage new];
nvCtr.view.backgroundColor = [UIColor clearColor];
[nvCtr.navigationBar setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];
nvCtr.navigationBar.backgroundColor = [UIColor clearColor];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment