Skip to content

Instantly share code, notes, and snippets.

@skizzo
Last active September 20, 2017 01:48
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 skizzo/3d38bf1a2514ddb4fcd6b8ec551a41cb to your computer and use it in GitHub Desktop.
Save skizzo/3d38bf1a2514ddb4fcd6b8ec551a41cb to your computer and use it in GitHub Desktop.
Determine & print installed fonts (iOS)
// Prints all installed/available fonts for iOS devices
for (NSString *familyName in [UIFont familyNames]){
NSLog(@"Family name: %@", familyName);
for (NSString *fontName in [UIFont fontNamesForFamilyName:familyName]) {
NSLog(@"--Font name: %@", fontName); // <-- use fontName string for fontFamily style value
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment