Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save demigod19892012/5311063 to your computer and use it in GitHub Desktop.
Save demigod19892012/5311063 to your computer and use it in GitHub Desktop.
[iOS] Get All Available Fonts in iOS
// Enumerate the installed font family names
[[UIFont familyNames] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop)
{
debug(@"\nFamily: %@", obj);
// Enumerate the font names in the each family
[[UIFont fontNamesForFamilyName:obj] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop)
{
debug(@"\tFont: %@\n", obj);
}];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment