Created
September 15, 2017 07:57
-
-
Save NikhilManapure/db1cd198ed8856fade45f684ff97cc57 to your computer and use it in GitHub Desktop.
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)”) | |
for name in UIFont.fontNames(forFamilyName: family) { | |
print(“ \(name)”) // This name | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment