Skip to content

Instantly share code, notes, and snippets.

@fcaldarelli
Last active October 25, 2016 20:20
Show Gist options
  • Save fcaldarelli/d368f42f5561f12dd89bc53259bae612 to your computer and use it in GitHub Desktop.
Save fcaldarelli/d368f42f5561f12dd89bc53259bae612 to your computer and use it in GitHub Desktop.
iOS list of installed fonts
// available fonts listed in xcode output
for (id familyName in [UIFont familyNames]) {
NSLog(@"%@", familyName);
for (id fontName in [UIFont fontNamesForFamilyName:familyName]) NSLog(@" %@", fontName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment