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 have custom Navigation Bar with metallic style.

It's pretty simple in iOS 5+.

You may change all your Navigation Bars by this code:

UIImage *navBackground =[[UIImage imageNamed:@"navigationBar.png"]    resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 0, 0)];
[[UINavigationBar appearance] setBackgroundImage:navBackground forBarMetrics:UIBarMetricsDefault];

But what about buttons? Do I need to make background images for all button sizes to fit navigation bar style? It's gonna be hard if your app localized.

But there are Apple's Apps with custom navigation bars: - Notes; - Reminders;

It seems to me that there is no images for each button for each size. They just somehow make navigation bar color darker to look like buttons.

Any help?

share|improve this question

1 Answer

up vote 2 down vote accepted

look at this link Custom Navigation Bar Background and Custom Buttons

share|improve this answer
So, I still need an Image for each button size... – user1561346 Dec 2 '12 at 10:22

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.