Skip to content

Instantly share code, notes, and snippets.

@jesskturner
Created January 26, 2016 18:42
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 jesskturner/1ad07b54a470fc5cda92 to your computer and use it in GitHub Desktop.
Save jesskturner/1ad07b54a470fc5cda92 to your computer and use it in GitHub Desktop.
Log iOS Font Names, Swift
for family: String in UIFont.familyNames()
{
print("family: \(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