Skip to content

Instantly share code, notes, and snippets.

@ksmandersen
Created June 28, 2018 08:54
Show Gist options
  • Save ksmandersen/5af2982eabd16bea026cfaf3a65c567d to your computer and use it in GitHub Desktop.
Save ksmandersen/5af2982eabd16bea026cfaf3a65c567d to your computer and use it in GitHub Desktop.
Listing out all included fonts in your app
// Make sure to include font files in bundle
// Add "Fonts provided by application" / UIAppFonts to Info.plist (use filename)
// Run this snippet in AppDelegate to find the name of your fonts
UIFont.familyNames.forEach { family in
print(family)
UIFont.fontNames(forFamilyName: family).forEach { names in
print(" - ", names)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment