Skip to content

Instantly share code, notes, and snippets.

@nottombrown
Created November 15, 2014 07:04
Show Gist options
  • Save nottombrown/1c17916c2123c3b0545d to your computer and use it in GitHub Desktop.
Save nottombrown/1c17916c2123c3b0545d to your computer and use it in GitHub Desktop.
for family in UIFont.familyNames(){
println(family)
for fontName in UIFont.fontNamesForFamilyName("\(family)") {
println(" \(fontName)")
}
}
@nottombrown
Copy link
Author

This lists all the fonts available to UIFont

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment