Skip to content

Instantly share code, notes, and snippets.

@magnusstubman
Created October 30, 2014 10:23
Show Gist options
  • Save magnusstubman/8ec50f60132aaf4c0bbd to your computer and use it in GitHub Desktop.
Save magnusstubman/8ec50f60132aaf4c0bbd to your computer and use it in GitHub Desktop.
Loop through available fonts and print them out
for family in UIFont.familyNames() {
print("Family: ")
println(family)
for font in UIFont.fontNamesForFamilyName(family as NSString) {
print(" name: ")
println(font)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment