Skip to content

Instantly share code, notes, and snippets.

@samermurad
Created June 26, 2017 07:50
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 samermurad/68ec82b8cf8a7edfd996ea00b04209cc to your computer and use it in GitHub Desktop.
Save samermurad/68ec82b8cf8a7edfd996ea00b04209cc to your computer and use it in GitHub Desktop.
iOS Print all fonts
for (NSString* famName in [UIFont familyNames]) {
NSLog(@"== %@",famName);
for (NSString* nameInFam in [UIFont fontNamesForFamilyName:famName]) {
NSLog(@"==== %@",nameInFam);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment