Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the standard font and size for iPhone navigation title?

Tags:

ios

iphone

fonts

Could anybody tell me please, what is the standard font and size for iPhone development?

Thanks in advance.

like image 371
MarcoA Avatar asked Dec 31 '10 10:12

MarcoA


People also ask

What is the default font size on iPhone?

To change the font settings in iOS open the Settings menu from the Home Screen. From there browse to General >> Accessibility. Within the Accessibility, menu tap the Large Text button. On the Large Text screen, you can choose from seven different sizes including Off which is the default size of 17pt.

What is the official font of iPhone?

SF Pro. This neutral, flexible, sans-serif typeface is the system font for iOS, iPad OS, macOS and tvOS. SF Pro features nine weights, variable optical sizes for optimal legibility, four widths, and includes a rounded variant. SF Pro supports over 150 languages across Latin, Greek, and Cyrillic scripts.

What is display and text size on iPhone?

Go to Settings > Accessibility > Display & Text Size. Adjust any of the following: Bold Text: Display the text in boldface characters. Larger Text: Turn on Larger Accessibility Sizes, then adjust the text size using the Font Size slider.


1 Answers

Helvetica Bold, size 20.

To obtain it you can use this convenience method in case Apple ever decides to change the font face:

UIFont *navigationTitleFont = [UIFont boldSystemFontOfSize:20.0f];
like image 99
BoltClock Avatar answered Oct 27 '22 06:10

BoltClock