Skip to content

Instantly share code, notes, and snippets.

@mikekatz
Created March 18, 2013 14:43
Show Gist options
  • Save mikekatz/5187639 to your computer and use it in GitHub Desktop.
Save mikekatz/5187639 to your computer and use it in GitHub Desktop.
Log all available fonts in iOS
for (NSString* familyName in [UIFont familyNames]) {
NSLog(@"%@",[UIFont fontNamesForFamilyName:familyName]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment