domingo, 17 de junho de 2012

Customizar o background de todos os UINavigationBar

  1. //Implemente este método no AppDelegate.m
  2. //E chame o método no application:didFinishLaunchingWithOptions:
  3. - (void)customizeAppearance
  4. {
  5.     UIImage * _navBarImage = [UIImage imageNamed:@"navBarBackground.png"];
  6.     [[UINavigationBar appearance] setBackgroundImage:_navBarImage forBarMetrics:UIBarMetricsDefault];
  7. }