Created
October 31, 2014 15:49
-
-
Save samuelbeek/d66851e58f62b26cb379 to your computer and use it in GitHub Desktop.
Show all available fonts on iOS in Swift
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 family in UIFont.familyNames() { | |
println(family); | |
var family: String = family as String | |
for name in UIFont.fontNamesForFamilyName(family) { | |
println(" \(name)"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment