ios swift5 设置PingFangSC字体

ios swift5 设置PingFangSC字体,第1张

文章目录 1.代码2.在storyboard中的设置3.字体类型(style)的中英文对照参考博客

1.代码
UIFont(name: "PingFangSC-Semibold", size: 16)
  //精选动态label
    lazy var headLabel:UILabel = {
        let attributedString = NSAttributedString(string: "精选动态", attributes: [NSAttributedString.Key.font : UIFont(name: "PingFangSC-Semibold", size: 16),NSAttributedString.Key.foregroundColor:UIColor.hexColor(hexValue: 0x292929)])
        let label = UILabel()
        label.attributedText = attributedString
        return label
    }()
2.在storyboard中的设置


3.字体类型(style)的中英文对照
细体 - PingFangSC-Light中黑体 - PingFangSC-Medium常规体 - PingFangSC-Regular中粗体 - PingFangSC-Semibold纤细体 -PingFangSC-Ultralight极细体 - PingFangSC-Thin

参考博客

iOS-PingFangSC字体
字体的不同粗细型号怎么认?

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/997026.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存