Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save extratone/94972516d5f552bc9b00b8d2a4b39905 to your computer and use it in GitHub Desktop.
Save extratone/94972516d5f552bc9b00b8d2a4b39905 to your computer and use it in GitHub Desktop.
Get fonts family and font names list on iOS
// List all fonts on iPhone
for (NSString* family in [UIFont familyNames]) {
NSLog(@"Family name: %@", family);
for (NSString* name in [UIFont fontNamesForFamilyName: family]) {
NSLog(@" Font name: %@", name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment