Skip to content

Instantly share code, notes, and snippets.

@UjwalManjunath
Created February 5, 2016 17:00
Show Gist options
  • Save UjwalManjunath/428260088b335f51c9a2 to your computer and use it in GitHub Desktop.
Save UjwalManjunath/428260088b335f51c9a2 to your computer and use it in GitHub Desktop.
Print all fonts: IOS - Swift 2.1
func printFonts() {
let fontFamilyNames = UIFont.familyNames()
for familyName in fontFamilyNames {
print("------------------------------")
print("Font Family Name = [\(familyName)]")
let names = UIFont.fontNamesForFamilyName(familyName)
print("Font Names = [\(names)]")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment