Created
April 23, 2021 11:49
-
-
Save tomaash/6f200776058704dbd8cbc4cef1597768 to your computer and use it in GitHub Desktop.
ios swift log font names
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for fontFamilyName in UIFont.familyNames{ | |
for fontName in UIFont.fontNames(forFamilyName: fontFamilyName){ | |
os_log("FAMILY: %@, NAME: %@", log: .default, fontFamilyName, fontName); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment