IPhone: change Navigation Bar title color and back button title color?

One part of this question has already been answered.

One part of this question has already been answered. Then, to change the back button title color, I would suggest creating a custom button with a label: UIBarButtonItem *buttonItem = UIBarButtonItem alloc initWithCustomView:yourViewWithColoredText; navigationItem. LeftBarButtonItem = buttonItem; // assign it as the left button yourViewWithColoredText should be a custom view containing your colored text.

Then depending on what you want, you could make it look like a standard back button.

You can set the titleView, defined in UINavigationBar. H as: @property(nonatomic,retain) UIView *titleView; // Custom view to use in lieu of a title. May be sized horizontally.

Only used when item is topmost on the stack. Pop your own UILabel in there with whatever color you want. Also, you'll get more responses if you don't have a 7% accept rate.

Go back and accept some of the answers you've gotten for previous questions, they can't all be bad.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions