这个问题在这里已经有了答案:
Best Answer-推荐答案 strong>
你可以使用 UIFont 的扩展来做
extension UIFont {
public enum FontWeight {
//cases are just font family like bold, light, italic
case .light
}
func appFont(weight : FontWeight, size : CGFloat) -> UIFont {
var fontName = "Times New Roman-"
switch weight {
case .light {
fontName = fontName + "light" // add your family name here
}
}
return UIFont(name: fontName, size: size)!
}
}
如果是标签
label.font = UIFont.appFont(weight : .light, size : 17)
关于ios - 如何在 Swift 4/Xcode 10.1 的整个应用程序中使用自定义字体?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/54643860/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) |
Powered by Discuz! X3.4 |