Visual List of iOS Fonts?

后端 未结 7 1947
你的背包
你的背包 2020-12-23 09:14

I am looking for a list of iOS Fonts for iOS 7. I have found the list on Apple\'s developer site, I am just wondering if anyone knows of a visual list where each font name

7条回答
  •  余生分开走
    2020-12-23 09:14

    Swift implementation:

    // Available fonts (console output)
    for familyName in UIFont.familyNames() {
        print(familyName)
        for fontName in UIFont.fontNamesForFamilyName(familyName) {
            print(fontName)
        }
    }
    

提交回复
热议问题