Skip to content

Instantly share code, notes, and snippets.

@ttsubono
Created June 22, 2012 02:17
Show Gist options
  • Save ttsubono/2969830 to your computer and use it in GitHub Desktop.
Save ttsubono/2969830 to your computer and use it in GitHub Desktop.
NavigationBarを黒色半透明にする
self.navigationController.navigationBar.tintColor = nil;
self.navigationController.navigationBar.barStyle = UIBarStyleBlack;
self.navigationController.navigationBar.translucent = YES;
self.navigationController.navigationBar.backgroundColor = nil;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment