Skip to content

Instantly share code, notes, and snippets.

@bakertim
Created February 22, 2014 19:32
Show Gist options
  • Save bakertim/9160811 to your computer and use it in GitHub Desktop.
Save bakertim/9160811 to your computer and use it in GitHub Desktop.
objective-c: display all font names
for (NSString* family in [UIFont familyNames])
{
NSLog(@"%@", family);
for (NSString* name in [UIFont fontNamesForFamilyName: family])
{
NSLog(@" %@", name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment