Skip to content

Instantly share code, notes, and snippets.

@ohtwo
Created May 3, 2017 06:42
Show Gist options
  • Save ohtwo/35504443e31e40dd1096eb960812b429 to your computer and use it in GitHub Desktop.
Save ohtwo/35504443e31e40dd1096eb960812b429 to your computer and use it in GitHub Desktop.
fonts.swift
// Fonts
for family in UIFont.familyNames
{
print("\(family)")
for names in UIFont.fontNames(forFamilyName: family)
{
print("== \(names)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment