Skip to content

Instantly share code, notes, and snippets.

@doluvor
Created October 17, 2016 06:34
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 doluvor/b954f3348dbac2a68a864f5f90361ffa to your computer and use it in GitHub Desktop.
Save doluvor/b954f3348dbac2a68a864f5f90361ffa to your computer and use it in GitHub Desktop.
Transparent UIToolbar and UINavigationBar
[self.toolbar setBackgroundImage:[UIImage new]
forToolbarPosition:UIBarPositionAny
barMetrics:UIBarMetricsDefault];
[self.toolbar setShadowImage:[UIImage new]
forToolbarPosition:UIBarPositionAny];
[self.navigationBar setBackgroundImage:[UIImage new]
forBarMetrics:UIBarMetricsDefault];
self.navigationBar.shadowImage = [UIImage new];
self.navigationBar.translucent = YES;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment