79352377

Date: 2025-01-13 13:48:39
Score: 0.5
Natty:
Report link

A Swift 6 implementation can be found here:

for familyName in UIFont.familyNames {
    print(familyName)
    for fontName in UIFont.fontNames(forFamilyName: familyName) {
        print(fontName)
    }
}

Just add this to a init of any class i.e AppDelegate to print out all of the available fonts.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Robin