Skip to content

Instantly share code, notes, and snippets.

View adhiyadeep's full-sized avatar
🎯
Focusing

Adhia Deep adhiyadeep

🎯
Focusing
  • Banglore
View GitHub Profile
@sibelius
sibelius / AppDelegate.m
Created December 7, 2016 17:26
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);