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?
|
2
|
|
|
|
|
|
Here's one way:
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. |
||||||
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|
|
Can't you iterate the contents of the UINavigationBar view to find the buttons in the awakeFromNib? |
||||||||
|
