Created
January 26, 2016 18:42
-
-
Save jesskturner/1ad07b54a470fc5cda92 to your computer and use it in GitHub Desktop.
Log iOS Font Names, 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: String in UIFont.familyNames() | |
{ | |
print("family: \(family)") | |
for names: String in UIFont.fontNamesForFamilyName(family) | |
{ | |
print("== \(names)") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment