Skip to content

Instantly share code, notes, and snippets.

@Kirow
Last active August 29, 2015 14:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Kirow/117417d1bb877d3a5030 to your computer and use it in GitHub Desktop.
Save Kirow/117417d1bb877d3a5030 to your computer and use it in GitHub Desktop.
Enumerate Fonts available in the application
//======================================
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