vote up 2 vote down star
4

It seems the iPhone Navigation Bar title color is always white. Is there a way to change it to a different color?

I am aware of the navigationItem.titleView approach using an image. Since my design skills are limited and I failed to get the standard glossy. So I prefer changing the text color.

Any pointers would be much appreciated.

flag

4 Answers

vote up 0 vote down

hihi~ how to add image and text together in the navigation bar ?

any help, i truly appreciated it ?

link|flag
vote up 0 vote down

I did this. i have a table view under the navigation controller. My problem is that sometimes the impressions of contents of the table view come on the navigation controller. I'm not sure why does this happen.

Can somebody please help me on this?

Thanks in Advance.

link|flag
vote up 6 vote down

You need to use a UILabel as the titleView of the navigationItem.

The label should:

  • Have a clear background color (label.backgroundColor = [UIColor clearColor]).
  • Be bold, 20pt system font (label.font = [boldSystemFontOfSize: 20.0f]).
  • Have a shadow of black with 50% alpha (label.shadowColor = [UIColor colorWithWhite:0.0 alpha:0.5]).
  • You'll want to set the text alignment to centered as well (label.textAlignment = UITextAlignmentCenter).

Set the label text color to be whatever custom color you'd like. You do want a color that doesn't cause the text to blend into shadow, which would be difficult to read.

I worked this out through trial and error, but the values I came up with are ultimately too simple for them not to be what Apple picked. :)

If you want to verify this, drop this code into initWithNibName:bundle: in PageThreeViewController.m of Apple's NavBar sample. This will replace the text with a yellow label. This should be indistinguishable from the original produced by Apple's code, except for the color.

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self)
    {
    	// this will appear as the title in the navigation bar
    	CGRect frame = CGRectMake(0, 0, 400, 44);
    	UILabel *label = [[[UILabel alloc] initWithFrame:frame] autorelease];
    	label.backgroundColor = [UIColor clearColor];
    	label.font = [UIFont boldSystemFontOfSize:20.0];
    	label.shadowColor = [UIColor colorWithWhite:0.0 alpha:0.5];
    	label.textAlignment = UITextAlignmentCenter;
    	label.textColor = [UIColor yellowColor];
    	self.navigationItem.titleView = label;
    	label.text = NSLocalizedString(@"PageThreeTitle", @"");
    }

    return self;
}

(As an aside, I've actually searched for an answer to this problem myself in the months since I first posted it. Imagine my surprise when it was my answer! That's part of why I've come back to clean it up a little...)

link|flag
vote up 0 vote down

This is one of those things that are missing. Your best bet is to create your own custom Navigation Bar, add a text box, and manipulate the color that way.

link|flag

Your Answer

Get an OpenID
or

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