Created
May 3, 2017 06:42
-
-
Save ohtwo/35504443e31e40dd1096eb960812b429 to your computer and use it in GitHub Desktop.
fonts.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fonts | |
for family in UIFont.familyNames | |
{ | |
print("\(family)") | |
for names in UIFont.fontNames(forFamilyName: family) | |
{ | |
print("== \(names)") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment