Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.