Skip to content

Instantly share code, notes, and snippets.

@jehumo
Created February 10, 2017 14:49
Show Gist options
  • Save jehumo/5e897bb5f92ce833968689365446a090 to your computer and use it in GitHub Desktop.
Save jehumo/5e897bb5f92ce833968689365446a090 to your computer and use it in GitHub Desktop.
Gist to check if the font is installed on Xcode (swift 3)
for family: String in UIFont.familyNames
{
print("\(family)")
for names: String in UIFont.fontNames(forFamilyName: family)
{
print("== \(names)")
}
}
for family: String in UIFont.familyNames
{
print("\(family)")
for names: String 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