Skip to content

Instantly share code, notes, and snippets.

@brocoo
Last active September 28, 2016 15:41
Show Gist options
  • Save brocoo/1e9232981514f9af0659 to your computer and use it in GitHub Desktop.
Save brocoo/1e9232981514f9af0659 to your computer and use it in GitHub Desktop.
Print a list available of fonts
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