Skip to content

Instantly share code, notes, and snippets.

@schifano
Created September 23, 2015 17:21
Show Gist options
  • Save schifano/ff588f8e88f199fc9942 to your computer and use it in GitHub Desktop.
Save schifano/ff588f8e88f199fc9942 to your computer and use it in GitHub Desktop.
// Print out all font families
// Source: http://stackoverflow.com/questions/11083954/uifont-fontwithname-font-name
NSArray *fontFamilies = [UIFont familyNames];
for (int i = 0; i < [fontFamilies count]; i++) {
NSLog(@"Font: %@ ...", [fontFamilies objectAtIndex:i]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment