I am working on ios 5. I want to add an image to my navigation bar, so in one of my view controllers, i have implemented this code
UINavigationBar *navBar = [[self navigationController] navigationBar];
UIImage *backgroundImage = [UIImage imageNamed:@"xyz.png"];
[navBar setBackgroundImage:backgroundImage forBarMetrics:UIBarMetricsDefault];
It adds the image to the navigation bar, but not to the buttons on the bar(e.g. back button or any other button used in the bar of that view). How can i achieve that?
Moreover, i have a large number of views and i want to put this image to all of my views, so whats the best way to do that?
I am new to ios programming, so waiting for some replies.
Regards