if let customFont = UIFont(name: "myFont", size: 54) {
testLabel.font = customFont
} else {
print("Font loading failed!")
}
然后我尝试打印所有字体,如下所示:
for fontFamily in UIFont.familyNames {
print(UIFont.fontNames(forFamilyName: fontFamily))
}
但是我找不到我的自定义字体 不知道为什么,非常感谢您的帮助