Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created December 7, 2016 17:26
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sibelius/e1db241ab225aba2adb84dbd8ae6525b to your computer and use it in GitHub Desktop.
Save sibelius/e1db241ab225aba2adb84dbd8ae6525b to your computer and use it in GitHub Desktop.
Print Font Names on IOS for a React Native Project
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
NSURL *jsCodeLocation;
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