Skip to content

Instantly share code, notes, and snippets.

@bradfordcp
Created July 7, 2011 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradfordcp/1068665 to your computer and use it in GitHub Desktop.
Save bradfordcp/1068665 to your computer and use it in GitHub Desktop.
iPhone: Retrieve a list of all available fonts
for (NSString *family in [UIFont familyNames]) {
NSLog(@"Family: %@", family);
for (NSString *font in [UIFont fontNamesForFamilyName:family]) {
NSLog(@" - %@", font);
}
NSLog(@"");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment