Skip to content

Instantly share code, notes, and snippets.

@davidglivar
Last active August 29, 2015 14:21
Show Gist options
  • Save davidglivar/9247b60e841a90b71d1e to your computer and use it in GitHub Desktop.
Save davidglivar/9247b60e841a90b71d1e to your computer and use it in GitHub Desktop.
display available font faces in ios
for family in UIFont.familyNames() {
println(family)
for name in UIFont.fontNamesForFamilyName(family as! String) {
println(" \(name)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment