Skip to content

Instantly share code, notes, and snippets.

@tsraveling
Created April 18, 2017 23:56
Show Gist options
  • Save tsraveling/f2541b529538fa52043820bfa0e53828 to your computer and use it in GitHub Desktop.
Save tsraveling/f2541b529538fa52043820bfa0e53828 to your computer and use it in GitHub Desktop.
Print font names
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