Skip to content

Instantly share code, notes, and snippets.

@Anatoli-Petrosyants
Last active February 1, 2018 07:57
Show Gist options
  • Save Anatoli-Petrosyants/fcf63b140925c4d0234787fbf72afe94 to your computer and use it in GitHub Desktop.
Save Anatoli-Petrosyants/fcf63b140925c4d0234787fbf72afe94 to your computer and use it in GitHub Desktop.
extension UIFont {
static func printFonts() {
UIFont.familyNames.forEach({ familyName in
let fontNames = UIFont.fontNames(forFamilyName: familyName)
print(familyName, fontNames)
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment