Skip to content

Instantly share code, notes, and snippets.

@wanghailei
Created March 27, 2014 22:37
Show Gist options
  • Save wanghailei/9820614 to your computer and use it in GitHub Desktop.
Save wanghailei/9820614 to your computer and use it in GitHub Desktop.
To list all the installed fonts on iOS, for verifying your customized fonts are installed.
// List the fonts name on the workstation to find out the real customized name.
for ( NSString * fontFamily in [ UIFont familyNames ] ) {
NSLog( @"%@", fontFamily );
for ( NSString * fontName in [UIFont fontNamesForFamilyName: fontFamily ] ) {
NSLog( @" %@", fontName );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment