Skip to content

Instantly share code, notes, and snippets.

@palmin
Forked from shannoga/gist:1008678
Last active September 25, 2022 07:55
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 palmin/14300e8bf529d05e7e53 to your computer and use it in GitHub Desktop.
Save palmin/14300e8bf529d05e7e53 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