Skip to content

Instantly share code, notes, and snippets.

@MaximAlien
Created May 22, 2015 13:04
Show Gist options
  • Save MaximAlien/5d7838849d93733d5749 to your computer and use it in GitHub Desktop.
Save MaximAlien/5d7838849d93733d5749 to your computer and use it in GitHub Desktop.
[iOS] Get 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