Skip to content

Instantly share code, notes, and snippets.

@bleft
Created March 11, 2016 10:26
Show Gist options
  • Save bleft/eeab719608abfc72922b to your computer and use it in GitHub Desktop.
Save bleft/eeab719608abfc72922b to your computer and use it in GitHub Desktop.
all fonts available for app
for family: String in UIFont.familyNames()
{
print("\(family)")
for names: String in UIFont.fontNamesForFamilyName(family)
{
print("== \(names)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment