Created
March 11, 2015 19:29
-
-
Save Gerharbo/2169d76998ef96caf409 to your computer and use it in GitHub Desktop.
List all fonts in Objective-c
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 (NSString* fontFamily in [UIFont familyNames]) | |
{ | |
NSLog(@"%@", fontFamily); | |
for (NSString* fontName in [UIFont fontNamesForFamilyName: fontFamily]) | |
{ | |
NSLog(@" %@", fontName); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment