Post

Replies

Boosts

Views

Activity

Reply to Preinstalled font use
For installed fonts, use the UIFont initializer to refer to a font by name. For example UIFont.init?(name: String, size: CGFloat) Use the UIFont familyNames property to get the list of installed font families then get the actual installed fonts with fontNames(forFamilyName:)
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’22
Reply to SF Symbols & Fonts - Commercial use
My understanding is that San Francisco is only licensed for use to write apps for Apple devices (e.g. iPhone, Apple Watch, Macintosh, etc.) Outside of app development, you can create UI mock-ups. Otherwise I believe SF font is not licensed for other purposes, and I think this also includes symbols. I would suggest consulting the Symbols and SF font license terms.
Topic: Design SubTopic: General Tags:
Apr ’22
Reply to Preinstalled font use
For installed fonts, use the UIFont initializer to refer to a font by name. For example UIFont.init?(name: String, size: CGFloat) Use the UIFont familyNames property to get the list of installed font families then get the actual installed fonts with fontNames(forFamilyName:)
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’22
Reply to SF Symbols & Fonts - Commercial use
My understanding is that San Francisco is only licensed for use to write apps for Apple devices (e.g. iPhone, Apple Watch, Macintosh, etc.) Outside of app development, you can create UI mock-ups. Otherwise I believe SF font is not licensed for other purposes, and I think this also includes symbols. I would suggest consulting the Symbols and SF font license terms.
Topic: Design SubTopic: General Tags:
Replies
Boosts
Views
Activity
Apr ’22
Reply to macOS Monterey partition missing "SF Pro Text" font
It appears Apple has restricted getting SF font by name in latest OS release. Use System Font APIs instead. NSFont has the following methods (amongst others): systemFont(ofSize:) preferredFont(forTextStyle:options:) Hope this helps. Doug Hill https://github.com/djfitz/SFFontFeatures
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Feb ’22