Skip to content

Instantly share code, notes, and snippets.

@manishval
Last active August 29, 2015 13:58
Show Gist options
  • Save manishval/10383102 to your computer and use it in GitHub Desktop.
Save manishval/10383102 to your computer and use it in GitHub Desktop.
Display all Font on iOS
NSArray *fontFamilies = [UIFont familyNames];
for (int i = 0; i < [fontFamilies count]; i++)
{
NSString *fontFamily = [fontFamilies objectAtIndex:i];
NSArray *fontNames = [UIFont fontNamesForFamilyName:[fontFamilies objectAtIndex:i]];
NSLog (@"%@: %@", fontFamily, fontNames);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment