Skip to content

Instantly share code, notes, and snippets.

@zackshapiro
Forked from jbergen/get-fonts
Last active April 23, 2016 14:46
Show Gist options
  • Save zackshapiro/89298e4374d63e6c5cf3 to your computer and use it in GitHub Desktop.
Save zackshapiro/89298e4374d63e6c5cf3 to your computer and use it in GitHub Desktop.
Print font family and font names
for family in UIFont.familyNames() {
print("family: \(family)")
for name in UIFont.fontNamesForFamilyName(family) {
print("name: \(name)")
}
print("")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment