Skip to content

Instantly share code, notes, and snippets.

@nasser
Created October 6, 2011 22:04
Show Gist options
  • Save nasser/1268829 to your computer and use it in GitHub Desktop.
Save nasser/1268829 to your computer and use it in GitHub Desktop.
Dump all available fonts on iOS
for(NSString* fam in [UIFont familyNames]) {
NSLog(@"%@", fam);
for (NSString* fon in [UIFont fontNamesForFamilyName:fam]) {
NSLog(@" %@", fon);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment