Skip to content

Instantly share code, notes, and snippets.

@baseboxorg
Forked from kirang89/getFontNames.m
Last active August 29, 2015 14:06
Show Gist options
  • Save baseboxorg/5e15adbc63936846c032 to your computer and use it in GitHub Desktop.
Save baseboxorg/5e15adbc63936846c032 to your computer and use it in GitHub Desktop.
-(void)dumpAllFonts {
for (NSString *familyName in [UIFont familyNames]) {
for (NSString *fontName in [UIFont fontNamesForFamilyName:familyName]) {
NSLog(@"%@", fontName);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment