Created
June 26, 2017 07:50
-
-
Save samermurad/68ec82b8cf8a7edfd996ea00b04209cc to your computer and use it in GitHub Desktop.
iOS Print all fonts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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