Reputation: 743
I need to use San Francisco font in my app. But I'm not sure if the default font (system font) in my current Xcode is SF font. My app is supporting iOS 7 and above and I need all OS version to use SF font.
I'm using Xcode 7.3.1 with OS 10.11.2. The font is set in Storyboard, not progamatically.
Upvotes: 2
Views: 5234
Reputation: 2953
Helvetica Neue was the default font for iOS 8 and prior. Apple has changed its default font from iOS 9 to San Francisco.
1) For your app If you want consistent font for all iOS versions then you have to explicitly set the San Francisco font via Storyboard or code.
2) iOS default font is based on iOS version not Xcode version. So, If you want SF fonts for iOS then then you have to install that font. Also If you want to make available that font in storyboard then you have to add that font in Apple Font Book app by double clicking on font file. (Note: Any custom font set by storyboard was not added in App then it will use the default font)
3) YES
Upvotes: 3