Skip to content

Instantly share code, notes, and snippets.

@modpluz
Created October 19, 2018 14:54
Show Gist options
  • Save modpluz/95054e4fc146304b35ff60360f666384 to your computer and use it in GitHub Desktop.
Save modpluz/95054e4fc146304b35ff60360f666384 to your computer and use it in GitHub Desktop.
List all fonts available to app in iOS
for (NSString* family in [UIFont familyNames])
{
NSLog(@"%@", family);
for (NSString* name in [UIFont fontNamesForFamilyName: family])
{
NSLog(@" %@", name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment