vote up 3 vote down star
2

I've got a UINavigationController and i've changed it to white using the Tint property of the navigation bar in Interface Builder. But the text in buttons and the title is still the default color, white, and so gets lost against the white background. Anyone know how to work around this?

flag

4 Answers

vote up 2 vote down check

Here's one way:

[[theNavigationBar.subviews objectAtIndex:1] setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
[[theNavigationBar.subviews objectAtIndex:2] setTitleColor:[UIColor redColor] forState:UIControlStateNormal];

However, HUGE, caveat. This is highly likely to break on a future OS release and is not recommended.

At the very least you should perform a lot of testing and make sure you your assumptions of the subview layout of the navigation bar are correct.

link|flag
I'd find that in particular fragile, since you're accessing the items by index. More safe would be to get all the subview items, compare classes against what you expect, and even use positions. But that's the kernel of the idea right there. :) – tewha Mar 26 at 17:53
Right. I didn't post the actual way to do it. Just the first method that worked. Defensive programming ftw. – schwa Mar 26 at 18:33
how funny that i don't get an answer for almost two months, and then i get a whole crop of them... anyway, i marked this one the answer because it's the most scalable, even though what i ended up using custom button images. hopefully something makes it into the official API by v3.0. – lawrence Mar 31 at 5:46
vote up 2 vote down

Or you use your own button bar item subclass with a setter you specify, lus isn't iPhone os 3 suppose to exposé text color for EVERY button

link|flag
vote up 2 vote down

I did as drunknbass suggested. I resorted to making a series of images for back-button in a few states, and regular buttons in a few states, and put them in a custom UIButton subclass, setting up the appropriate styles.

As a solution it doesn't scale particularly well, but my needs were simple enough. It has the advantage of not breaking if the subview orders in the built in controls change though, which is the obvious downside of that approach. Disadvantage of needing several images. The other tricky thing is handling an orientation change, since the buttons should change size.

On a related note, if you do change the tint color of your navigation bar, it does not play well with the special "More" view controller for customizing the order of a tab bar. There doesn't seem to be any "acceptable" way to change the color of the toolbar in that view.

link|flag
That's a fine solution for a single nav bar. But as you admitted it doesn't scale well at all. I'd probably use a solution like this normally. But I'm working on an app that has very dynamic ui requirements. I might be forced to do something more hacky :-( – schwa Mar 26 at 3:02
vote up 1 vote down

Can't you iterate the contents of the UINavigationBar view to find the buttons in the awakeFromNib?

link|flag
You can. But I'm doing a setTextColor:forStates: on my buttons and it seems to be ignored. Will persevere though. Also that borders on private api (or at least private assumed knowledge of structure of UI) usage. – schwa Mar 26 at 2:40
Oh I take that back - it does work. See follow up answer... – schwa Mar 26 at 2:41
I've peeked inside other views like this. While it's a bit private API-ish, it at least makes no assumptions: if the internals change, your code won't detect whatever condition you're searching for. But I haven't done UINavigationBar yet. – tewha Mar 26 at 2:42
And you can also code defensively to make sure you dont go boom. But still - I'd prefer a real API. ;-) – schwa Mar 26 at 2:50

Your Answer

Get an OpenID
or

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