up vote 4 down vote favorite
1
share [g+] share [fb]

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?

link|improve this question

59% 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
feedback

2 Answers

up vote 7 down vote accepted

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

navigationItem.titleView = [[UIImageView alloc] initWithImage: [UIImage imageNamed:@"title_bar.png"]];
link|improve this answer
5  
Correct; minor nitpick, this has a memory leak--be sure to autorelease the UIImageView. – Adam Ernst Nov 30 '08 at 3:58
Anyone know the maximum and ideal dimensions for this view? – Max Howell Nov 17 '10 at 18:24
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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