Skip to content

Instantly share code, notes, and snippets.

@3runoDesign
Created January 7, 2022 02:28
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 3runoDesign/91d2d40e660f0834a561c561725c6658 to your computer and use it in GitHub Desktop.
Save 3runoDesign/91d2d40e660f0834a561c561725c6658 to your computer and use it in GitHub Desktop.
Print Font Names on IOS
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// ...
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