Skip to content

Instantly share code, notes, and snippets.

@kyleturner
Created December 18, 2011 01:21
Show Gist options
  • Save kyleturner/1492044 to your computer and use it in GitHub Desktop.
Save kyleturner/1492044 to your computer and use it in GitHub Desktop.
iOS 5.0 Set Navigation Background w/ 4.0 backwards compatibility
if ([self.navigationController.navigationBar respondsToSelector:@selector( setBackgroundImage:forBarMetrics:)]){
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"navbar.png"] forBarMetrics:UIBarMetricsDefault];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment