Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vnavarro/b95b72e4e49bd61752e18dd4238c76cc to your computer and use it in GitHub Desktop.
Save vnavarro/b95b72e4e49bd61752e18dd4238c76cc to your computer and use it in GitHub Desktop.
Swift code for printing all registered fonts on iOS project
for familyName in UIFont.familyNames {
print("------------------------------")
print("Font Family Name = [\(familyName)]")
let names = UIFont.fontNames(forFamilyName: familyName as! String)
print("Font Names = [\(names)]")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment