Skip to content

Instantly share code, notes, and snippets.

View Maxnelson997's full-sized avatar
React

Maxwell Nelson Maxnelson997

React
View GitHub Profile
@Maxnelson997
Maxnelson997 / PrintFontFamilyFonts.swift
Created February 2, 2019 20:52
Print all fonts from every font family included in your iOS swift app.
UIFont.familyNames.forEach { (familyName) in
let fontNames = UIFont.fontNames(forFamilyName: familyName)
print(familyName, fontNames)
}