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 was wondering why everything stops behaving as it should when I do something like this:

self.navigationController.navigationBar.tintColor = [UIColor blackColor];

All my buttons on the navigationBar are now black regardless of style, like this one below, it should turn up as a blue button:

    UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithTitle:@"Edit" style:UIBarButtonItemStyleDone target:self action:@selector(editTrip)];

It does not, it is just black.

The slight change/effect in the button when tapped is also gone?

Is there a way to change the color of the navigationBar and maybe even the UIbarButtonItems without somehow ruining standard behavior?

This is really strange. I just checked with the Apple "Remote" app, it has the black navigation bar and a blue "Done" button for leaving the "help" section.

Do I really have to build everything custom to achieve this?

Thanks for any help given:)

share|improve this question

1 Answer

up vote 4 down vote accepted

In Interface Builder, change the Style of the Navigation Bar to Black Opaque or Black Translucent and leave the tint alone. This will give you a black bar with the standard blue buttons.

I'm sure the way to do this in code without Interface Builder, is by setting the barStyle property to UIBarStyleBlack or UIBarStyleBlackTranslucent, but I haven't done it that way.

share|improve this answer
Hi mahboudz Thanks I'll try that right away. I was wondering if the tint where being applied to every subview, it seems like it:) I'll be setting these thing in code so will just get back with the results. – RickiG Nov 9 '09 at 10:35
Perfect mahboudz! self.navigationController.navigationBar.barStyle = UIBarStyleBlack; Get's me both the black look and the right colored buttons:) Thanks again! – RickiG Nov 9 '09 at 10:40
Great! Good luck... – mahboudz Nov 9 '09 at 10:56

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.