Skip to content

Instantly share code, notes, and snippets.

@StanislavK
Created October 31, 2017 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StanislavK/4519089f30c886bf39a95e9e837fff02 to your computer and use it in GitHub Desktop.
Save StanislavK/4519089f30c886bf39a95e9e837fff02 to your computer and use it in GitHub Desktop.
func printAllFontNames() {
let fontFamilyNames = UIFont.familyNames
for familyName in fontFamilyNames {
print("------------------------------")
print("Font Family Name = [\(familyName)]")
let names = UIFont.fontNames(forFamilyName: familyName)
print("Font Names = [\(names)]")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment