Skip to content

Instantly share code, notes, and snippets.

@AdityaDeshmane
Last active July 8, 2016 20:22
Show Gist options
  • Save AdityaDeshmane/f5ed0212075ae7d80a45191432f57d6d to your computer and use it in GitHub Desktop.
Save AdityaDeshmane/f5ed0212075ae7d80a45191432f57d6d to your computer and use it in GitHub Desktop.
Blogspot Snippet : iOS Development : Using Custom Fonts
for (NSString* family in [UIFont familyNames])
{
NSLog(@"%@", family);
for (NSString* name in [UIFont fontNamesForFamilyName: family])
{
NSLog(@"Actual font name : %@", name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment