Skip to content

Instantly share code, notes, and snippets.

@Gerharbo
Created March 11, 2015 19:29
Show Gist options
  • Save Gerharbo/2169d76998ef96caf409 to your computer and use it in GitHub Desktop.
Save Gerharbo/2169d76998ef96caf409 to your computer and use it in GitHub Desktop.
List all fonts in Objective-c
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