我正在尝试实施来自Sketch的设计标签,例如我需要字体大小为19且行高为50的文本样式。因此,我最终将NSAttributedString
与NSMutableParagraphStyle
一起使用,但由于文本粘在UILabel
底部的问题而停了下来>
我已经尝试使用lineHeightMultiple
和lineSpacing
,但是这些没有给我想要的行高,所以我最终使用了minimumLineHeight
和maximumLineHeight
等于一样
这是我制作NSAttributedString
private static func makeAttributedString(
with attributes: TextAttributes,
text: String? = nil,
alignment: NSTextAlignment = .center
) -> NSAttributedString {
let font = UIFont(name: attributes.font.rawValue, size: attributes.fontSize)!
let paragraph = NSMutableParagraphStyle()
paragraph.alignment = alignment
paragraph.paragraphSpacing = attributes.paragraph
paragraph.minimumLineHeight = attributes.lineHeight // equal 50 in my case
paragraph.maximumLineHeight = attributes.lineHeight // equal 50 in my case
let attributes: [NSAttributedStringKey: Any] = [
NSAttributedStringKey.paragraphStyle: paragraph,
NSAttributedStringKey.foregroundColor: attributes.textColor,
NSAttributedStringKey.kern: attributes.kern,
NSAttributedStringKey.font: font
]
return NSAttributedString(string: text ?? "", attributes: attributes)
}
我希望结果与设计类似
但实际上得到了
注意:将高度限制设置为50不适用,因为我也需要多行标签,但它们存在相同的错误
答案 0 :(得分:0)
好像我自己找到了一些解决方法,也许它将对某人有所帮助。
该方法是关于像这样设置baselineOffset的:
NSAttributedStringKey.baselineOffset: (attributes.lineHeight - font.lineHeight) / 4
像魅力一样工作: