Created
March 15, 2018 04:12
-
-
Save mongris/8d32b359a40c640a2caebed9fb97dfeb to your computer and use it in GitHub Desktop.
List iOS fonts with swift single line
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
UIFont.familyNames.forEach{ print($0); UIFont.fontNames(forFamilyName: $0).forEach{ print(" ", $0) } } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment