Skip to content

Instantly share code, notes, and snippets.

@dasilvacontin
Created September 10, 2014 12:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasilvacontin/01054d5a3b0c56ea1a07 to your computer and use it in GitHub Desktop.
Save dasilvacontin/01054d5a3b0c56ea1a07 to your computer and use it in GitHub Desktop.
Log all the fonts available in Swift
for family in UIFont.familyNames() as [String]
{
println("\(family)")
for name in UIFont.fontNamesForFamilyName(family)
{
println(" \(name)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment