Skip to content

Instantly share code, notes, and snippets.

@ahmattox
Created October 30, 2012 15:56
Show Gist options
  • Save ahmattox/3981130 to your computer and use it in GitHub Desktop.
Save ahmattox/3981130 to your computer and use it in GitHub Desktop.
List all fonts and styles available on an iOS device.
- (void) listFonts {
NSArray *familyNames = [UIFont familyNames];
for (NSString *family in familyNames) {
NSLog(@"family: %@", family);
NSArray *styles = [UIFont fontNamesForFamilyName:family];
for (NSString *style in styles) {
NSLog(@" - %@", style);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment