Skip to content

Instantly share code, notes, and snippets.

@jawinn
Created May 24, 2017 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jawinn/a92f079ace9ba634e4ded1060b365860 to your computer and use it in GitHub Desktop.
Save jawinn/a92f079ace9ba634e4ded1060b365860 to your computer and use it in GitHub Desktop.
Log font names, React Native
// Add to application in appDelegate.m to log all font names as you would use them in CSS
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