Skip to content

Instantly share code, notes, and snippets.

@sgtsquiggs
Created August 18, 2015 16:29
Show Gist options
  • Save sgtsquiggs/7ca95fca72f55c303ac5 to your computer and use it in GitHub Desktop.
Save sgtsquiggs/7ca95fca72f55c303ac5 to your computer and use it in GitHub Desktop.
show me the fonts
#ifdef SHOW_ME_THE_FONTS
for (NSString *familyName in [UIFont familyNames]){
NSLog(@"Family name: %@", familyName);
for (NSString *fontName in [UIFont fontNamesForFamilyName:familyName]) {
NSLog(@"--Font name: %@", fontName);
}
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment