1

I need to add background image to navigationbar, I done the code but it shows below the status bar.How to display the image fully on navigationbar.(iOS 8).

enter image description here

What actually I need to achieve is like the image below enter image description here

The code I used for navigationbar background image is

UIImage *navBarBackgroundImage = [UIImage imageNamed:@"NavigationBarImg"];
[[UINavigationBar appearance] setBackgroundImage:navBarBackgroundImage forBarMetrics:UIBarMetricsDefault];
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
Cœur
  • 37,241
  • 25
  • 195
  • 267
iniyan
  • 131
  • 3
  • 15

1 Answers1

0

Make UINavigationBar transparent

[self.navigationBar setBackgroundImage:[UIImage new]
                     forBarMetrics:UIBarMetricsDefault];
self.navigationBar.shadowImage = [UIImage new];
self.navigationBar.translucent = YES;
Harsha
  • 26
  • 1