Skip to content

Instantly share code, notes, and snippets.

@StanislavK
Created March 4, 2018 23:24
Show Gist options
  • Save StanislavK/c227236b5961d1a4b8273c20bc457608 to your computer and use it in GitHub Desktop.
Save StanislavK/c227236b5961d1a4b8273c20bc457608 to your computer and use it in GitHub Desktop.
extension UIFont {
class func printAllFonts() {
UIFont.familyNames().forEach { family in
UIFont.fontNamesForFamilyName(family).forEach { font in
print(font)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment