Last active
July 8, 2016 20:22
-
-
Save AdityaDeshmane/f5ed0212075ae7d80a45191432f57d6d to your computer and use it in GitHub Desktop.
Blogspot Snippet : iOS Development : Using Custom Fonts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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