Skip to content

Instantly share code, notes, and snippets.

@sanderpick
Created July 19, 2013 19:23
Show Gist options
  • Save sanderpick/6041721 to your computer and use it in GitHub Desktop.
Save sanderpick/6041721 to your computer and use it in GitHub Desktop.
can i haz font names?
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