Skip to content

Instantly share code, notes, and snippets.

@fdocr
Created September 8, 2016 15:17
Show Gist options
  • Save fdocr/b367496cfc3e2694d9b27e4816cb00cc to your computer and use it in GitHub Desktop.
Save fdocr/b367496cfc3e2694d9b27e4816cb00cc to your computer and use it in GitHub Desktop.
Useful for looking up font names added to a project
for family: String in UIFont.familyNames() {
print("\(family)")
for names: String in UIFont.fontNamesForFamilyName(family) {
print("== \(names)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment