Skip to content

Instantly share code, notes, and snippets.

@mwahlig
Created November 7, 2016 22:23
Show Gist options
  • Save mwahlig/fdf2c31ddc0b2699ec5d1b4233d730d6 to your computer and use it in GitHub Desktop.
Save mwahlig/fdf2c31ddc0b2699ec5d1b4233d730d6 to your computer and use it in GitHub Desktop.
Print Available Font Families
// 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