Skip to content

Instantly share code, notes, and snippets.

@scelis
Created March 17, 2010 14:00
Show Gist options
  • Save scelis/335253 to your computer and use it in GitHub Desktop.
Save scelis/335253 to your computer and use it in GitHub Desktop.
Retrieve a list of all fonts available on the iPhone.
NSArray *familyNames = [UIFont familyNames];
for (NSString *familyName in familyNames)
{
NSLog(@"Family: %@\n", familyName);
NSArray *fontNames = [UIFont fontNamesForFamilyName:familyName];
for (NSString *fontName in fontNames)
{
NSLog(@"\tFont: %@\n", fontName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment