Created
November 7, 2016 22:23
-
-
Save mwahlig/fdf2c31ddc0b2699ec5d1b4233d730d6 to your computer and use it in GitHub Desktop.
Print Available Font Families
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
// Swift 2.3 | |
UIFont.familyNames().sort().forEach({print($0)}) | |
// Swift 3.0 | |
UIFont.familyNames.sorted().forEach({print($0)}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment