Skip to content

Instantly share code, notes, and snippets.

@avanish
Created April 24, 2017 03:33
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 avanish/1144d4a19a37b2145e93b3f0638ef538 to your computer and use it in GitHub Desktop.
Save avanish/1144d4a19a37b2145e93b3f0638ef538 to your computer and use it in GitHub Desktop.
ViewController.m
// 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