Skip to content

Instantly share code, notes, and snippets.

@Air-Craft
Created July 30, 2014 15:21
Show Gist options
  • Save Air-Craft/28370fe35a86d7a0815a to your computer and use it in GitHub Desktop.
Save Air-Craft/28370fe35a86d7a0815a to your computer and use it in GitHub Desktop.
List all available fonts in your iOS App #iOS #fonts #coding #basic
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