Skip to content

Instantly share code, notes, and snippets.

@nuclearghost
Created December 7, 2014 21:53
Show Gist options
  • Save nuclearghost/ff33136e5bc883c8abbf to your computer and use it in GitHub Desktop.
Save nuclearghost/ff33136e5bc883c8abbf to your computer and use it in GitHub Desktop.
iOS Fonts available
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