Last active
August 29, 2015 14:07
-
-
Save backslash-f/1fed08b2166f18c64c84 to your computer and use it in GitHub Desktop.
List installed fonts in iOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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