Skip to content

Instantly share code, notes, and snippets.

@andresilvagomez
andresilvagomez / Fonts.swift
Created April 27, 2018 05:01 — forked from khanlou/Fonts.swift
Print all fonts in Swift 3
UIFont.familyNames.forEach({ familyName in
let fontNames = UIFont.fontNames(forFamilyName: familyName)
print(familyName, fontNames)
})