Created
October 30, 2014 10:23
-
-
Save magnusstubman/8ec50f60132aaf4c0bbd to your computer and use it in GitHub Desktop.
Loop through available fonts and print them out
This file contains hidden or 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 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