Skip to content

Instantly share code, notes, and snippets.

@ingscjoshua
Forked from khanlou/Fonts.swift
Created February 13, 2018 17:55
Show Gist options
  • Save ingscjoshua/8d397243286d9c3f2d0c3a9256fc8993 to your computer and use it in GitHub Desktop.
Save ingscjoshua/8d397243286d9c3f2d0c3a9256fc8993 to your computer and use it in GitHub Desktop.
Print all fonts in Swift 3
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