Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save omgbbqhaxx/79db9662571fb789fb2440d9e96e8181 to your computer and use it in GitHub Desktop.

Select an option

Save omgbbqhaxx/79db9662571fb789fb2440d9e96e8181 to your computer and use it in GitHub Desktop.
Prints out all of the Fonts available. (Helpful for using custom fonts)
for familyName in UIFont.familyNames as [String] {
print("\(familyName)")
for fontName in UIFont.fontNames(forFamilyName: familyName) as [String] {
print("\tFont: \(fontName)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment