Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which font and size does apple use for the navigation bar title?

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?

like image 440
dontWatchMyProfile Avatar asked Apr 07 '10 11:04

dontWatchMyProfile


People also ask

What font size does Apple use?

iOS has some big chunky titles, like “Inbox” below – at 34pt, it's about the biggest text you'll see on an iPhone. But once you scroll, titles morph to 17pt, the default size for text-based actions as well.

What font does Apple Maps use?

Apple's Maps app uses the system font, Avenir.

What font does Apple use on iPhone?

SF Pro is the system font in iOS and iPadOS.

What is iPhone default text size?

As mentioned above iOS uses a default font size of 17pt for content, while macOS uses 13pt.


1 Answers

iOS12 - iOS15 Large Title - System Bold 34 (San Francisco)

[UIFont boldSystemFontOfSize:34] 

iOS9 - iOS15 Regular centered title - System Semibold 17 (San Francisco)

[UIFont systemFontOfSize:17 weight:UIFontWeightSemibold] 

iOS8 - System Semibold 17 (Helvetica Neue)

[UIFont systemFontOfSize:17 weight:UIFontWeightSemibold] 

iOS7 - System Bold 17 (Helvetica Neue)

[UIFont boldSystemFontOfSize:17]; 

Nice link about typo in iOS https://learnui.design/blog/ios-font-size-guidelines.html

like image 110
Peter Lapisu Avatar answered Oct 12 '22 10:10

Peter Lapisu