Skip to content

Instantly share code, notes, and snippets.

@nutsmuggler
Created February 29, 2012 15:27
Show Gist options
  • Save nutsmuggler/1941597 to your computer and use it in GitHub Desktop.
Save nutsmuggler/1941597 to your computer and use it in GitHub Desktop.
Show the available fonts on an iOs app
NSArray *names = [UIFont familyNames];
NSArray *fontFaces;
NSLog(@"Font FamilyNames");
for (NSString *name in names) {
NSLog(@"Font Family:  %@",name);
fontFaces = [UIFont fontNamesForFamilyName:name];
for (NSString *fname in fontFaces) {
NSLog(@"              %@",fname);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment