I made an totally custom navigation bar and would like to use the exact same font and size like apple does for the title of their navigation bar. It looks like some kind of fat printed arial, but not sure if that's right. Does anyone know?
+5
A:
Definitely not Arial. It's Helvetica. You can probably get the same font using
UIFont *navFont = [UIFont boldSystemFontOfSize:18];
Change the size to find out what Apple is using (and write it below in a comment if you find the best one).
All the navigation bar text has a white shadow underneath it to give it the embossed effect. It's a white shadow 1 pixel underneath the text. Use shadowColor
and shadowOffset
in a UILabel
to get the same effect.
nevan
2010-04-07 11:36:12
I believe it's 15. Going to have to experiment a bit more. Thanks.
dontWatchMyProfile
2010-04-09 10:42:55