Skip to content

Instantly share code, notes, and snippets.

@kirang89
Created May 28, 2014 00:53
Show Gist options
  • Save kirang89/e6a785ee11f5ac8b2035 to your computer and use it in GitHub Desktop.
Save kirang89/e6a785ee11f5ac8b2035 to your computer and use it in GitHub Desktop.
Snippet to get all font names available to XCode
-(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