Last active
October 25, 2016 20:20
-
-
Save fcaldarelli/d368f42f5561f12dd89bc53259bae612 to your computer and use it in GitHub Desktop.
iOS list of installed fonts
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
// available fonts listed in xcode output | |
for (id familyName in [UIFont familyNames]) { | |
NSLog(@"%@", familyName); | |
for (id fontName in [UIFont fontNamesForFamilyName:familyName]) NSLog(@" %@", fontName); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment