Skip to content

Instantly share code, notes, and snippets.

@canaksoy
Created April 8, 2016 22:18
Show Gist options
  • Save canaksoy/04de2656c0259bf81796bd04105c9e40 to your computer and use it in GitHub Desktop.
Save canaksoy/04de2656c0259bf81796bd04105c9e40 to your computer and use it in GitHub Desktop.
ios installed fonts list
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