Created
April 24, 2017 03:33
-
-
Save avanish/1144d4a19a37b2145e93b3f0638ef538 to your computer and use it in GitHub Desktop.
ViewController.m
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// to list down all the available fonts in iOS | |
for (NSString *fontFamilyName in [UIFont familyNames]) { | |
for (NSString *fontName in [UIFont fontNamesForFamilyName:fontFamilyName]) { | |
NSLog(@"Family: %@ Font: %@", fontFamilyName, fontName); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment