Skip to content

Instantly share code, notes, and snippets.

@xianwen
Created May 13, 2013 13:35
Show Gist options
  • Select an option

  • Save xianwen/5568334 to your computer and use it in GitHub Desktop.

Select an option

Save xianwen/5568334 to your computer and use it in GitHub Desktop.
Update background image for all UINavigationBars
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Customize appearance
[self customizeAppearance];
...
}
- (void)customizeAppearance
{
// Set the background image for all UINavigationBars
[[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"navigation-bar"]
forBarMetrics:UIBarMetricsDefault];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment