Skip to content

Instantly share code, notes, and snippets.

@nalindz
Created May 16, 2012 21:23
Show Gist options
  • Save nalindz/2714055 to your computer and use it in GitHub Desktop.
Save nalindz/2714055 to your computer and use it in GitHub Desktop.
[super viewDidLoad];
UIImage* backgroundImage = [UIImage imageNamed:@"Title-Background"];
[self.navigationBar setBackgroundImage:backgroundImage
forBarMetrics:UIBarMetricsDefault];
CGFloat heightDiff = backgroundImage.size.height - self.navigationBar.frame.size.height;
self.navigationBar.frame = CGRectMake(self.navigationBar.frame.origin.x,
self.navigationBar.frame.origin.y,
backgroundImage.size.width,
backgroundImage.size.height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment