Skip to content

Instantly share code, notes, and snippets.

@tomaash
Created April 23, 2021 11:49
Show Gist options
  • Save tomaash/6f200776058704dbd8cbc4cef1597768 to your computer and use it in GitHub Desktop.
Save tomaash/6f200776058704dbd8cbc4cef1597768 to your computer and use it in GitHub Desktop.
ios swift log font names
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