Skip to content

Instantly share code, notes, and snippets.

@backslash-f
Last active August 29, 2015 14:07
Show Gist options
  • Save backslash-f/1fed08b2166f18c64c84 to your computer and use it in GitHub Desktop.
Save backslash-f/1fed08b2166f18c64c84 to your computer and use it in GitHub Desktop.
List installed fonts in iOS
for familyName in UIFont.familyNames() {
println("Font family name: \(familyName)")
println("Font names under family: \(UIFont.fontNamesForFamilyName(familyName as String))")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment