iOS_UIFont的Attributes解析

2022-07-20 14:51:54 浏览数 (1)

Font attributes

最近做了一个需求,在AttributeString中插入图片,然后需要图片跟文字对齐。就遇到了ascender,所以简单了解了一下,贴在这里以备以后查看~

familyName:字体家族的名字 fontName:字体的名字 pointSize:字体大小 ascender:基准线以上的高度 descender:基准线以下的高度(负数) capHeight:大写字母的高度 xHeight:小写x的高度 lineHeight:行高 leading:行间距(一般为0)

代码语言:javascript复制
let lb = UILabel(frame: CGRect(x: 100, y: 100, width: 100, height: 100))
let font = UIFont.systemFont(ofSize: 20)
lb.font = font;
lb.text = "afj"
self.view.addSubview(lb)
print(font) // font-family: ".SFUI-Regular"; font-weight: normal; font-style: normal; font-size: 20.00pt
print("ascender: (font.ascender)") // 19.04296875
print("descender: (font.descender)") // -4.82421875
print("capHeight: (font.capHeight)") // 14.091796875
print("xHeight: (font.xHeight)") // 10.439453125
print("leading: (font.leading)") // 0.0

参考: UIFont 属性对应 iOS 对UIFont的新的理解

0 人点赞