//
// UIFont+Universal.swift
// UIFont+Universal
import UIKit
extension UIFont {
// MARK: - 字体
static func lightSystemFont(ofSize size: CGFloat) -> UIFont {
return .systemFont(ofSize: size, weight: UIFont.Weight.light)
}
static func regularSystemFont(ofSize size: CGFloat) -> UIFont {
return .systemFont(ofSize: size, weight: UIFont.Weight.regular)
}
static func mediumSystemFont(ofSize size: CGFloat) -> UIFont {
return .systemFont(ofSize: size, weight: UIFont.Weight.medium)
}
static func semiboldSystemFont(ofSize size: CGFloat) -> UIFont {
return .systemFont(ofSize: size, weight: UIFont.Weight.semibold)
}
static func thinSystemFont(ofSize size: CGFloat) -> UIFont {
return .systemFont(ofSize: size, weight: UIFont.Weight.thin)
}
static func ultraLightSystemFont(ofSize size: CGFloat) -> UIFont {
return .systemFont(ofSize: size, weight: UIFont.Weight.light)
}
// MARK: - 平方字体
///苹方简体 - 常规体
public static func pingfang(_ size: CGFloat) -> UIFont {
return UIFont.init(name: "PingFangSC-Regular", size: size) ?? regularSystemFont(ofSize: size)
}
///苹方简体 - 中黑体
public static func pingfang(medium size: CGFloat) -> UIFont {
return UIFont.init(name: "PingFangSC-Medium", size: size) ?? mediumSystemFont(ofSize: size)
}
///苹方简体 - 中粗体
public static func pingfang(bold size: CGFloat) -> UIFont {
return UIFont(name: "PingFangSC-Semibold", size: size) ?? semiboldSystemFont(ofSize: size)
}
///苹方简体 - 细体
public static func pingfang(light size: CGFloat) -> UIFont {
return UIFont(name: "PingFangSC-Light", size: size) ?? lightSystemFont(ofSize: size)
}
///苹方简体 - 极细体
public static func pingfang(ultralight size: CGFloat) -> UIFont {
return UIFont.init(name: "PingFangSC-Ultralight", size: size) ?? ultraLightSystemFont(ofSize: size)
}
///苹方简体 - 纤细体
public static func pingfang(thin size: CGFloat) -> UIFont {
return UIFont.init(name: "PingFangSC-Thin", size: size) ?? thinSystemFont(ofSize: size)
}
}
iOS字体拓展
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 获取字体方法: NSArray *array = [UIFont familyNames]; NSString *...
- 荒废了很久,终于想起来简书的存在,做了一下项目的语言本地化,却发现一个新的问题,在这记录一下。 最开始在项目中,使...
- 在使用UIPickerView显示时间,城市等的选择时,系统定义的样式总是与自己的页面不搭配需要进行精加工,就给大...
- 如下 code 用来查询当前字体的可选样式,废话不多说, code 如下: NSArray*familyName ...