Skip to content

Instantly share code, notes, and snippets.

@cobysy
Created April 14, 2015 10:00
Show Gist options
  • Save cobysy/80c2f245e109a201d587 to your computer and use it in GitHub Desktop.
Save cobysy/80c2f245e109a201d587 to your computer and use it in GitHub Desktop.
let fontFamilyNames = UIFont.familyNames()
for familyName in fontFamilyNames {
println("------------------------------")
println("Font Family Name = [\(familyName)]")
let names = UIFont.fontNamesForFamilyName(familyName as! String)
println("Font Names = [\(names)]")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment