vote up 1 vote down star
1

I'd like to add a logo to the left of my title on my navigation bar. The title property seems to only take an NSString. What's the best way to add an image to the navigation bar?

flag

63% accept rate
Just curious so I can learn to avoid the same deficit in the future, but why did my question get marked down? – Coocoo4Cocoa Nov 30 '08 at 2:41
I's be curious to see also. Seems like a reasonable, if narrow, question. – Darrel Nov 30 '08 at 2:45

2 Answers

vote up 3 vote down check

You can replace the title view with an image like this:

navigationItem.titleView = [[UIImageView alloc] initWithImage: [UIImage imageNamed:@"title_bar.png"]];
link|flag
2  
Correct; minor nitpick, this has a memory leak--be sure to autorelease the UIImageView. – Adam Ernst Nov 30 '08 at 3:58
vote up 2 vote down

Set UINavigationItem.titleView to a custom view (or just a straight UIImageView).

link|flag

Your Answer

Get an OpenID
or

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