NSAttributedString文本始终以大lineHeight停留在底部

时间:2019-07-10 14:41:16

标签: ios swift uilabel nsattributedstring

我正在尝试实施来自Sketch的设计标签,例如我需要字体大小为19且行高为50的文本样式。因此,我最终将NSAttributedStringNSMutableParagraphStyle一起使用,但由于文本粘在UILabel底部的问题而停了下来

我已经尝试使用lineHeightMultiplelineSpacing,但是这些没有给我想要的行高,所以我最终使用了minimumLineHeightmaximumLineHeight等于一样

这是我制作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不适用,因为我也需要多行标签,但它们存在相同的错误

1 个答案:

答案 0 :(得分:0)

好像我自己找到了一些解决方法,也许它将对某人有所帮助。

该方法是关于像这样设置baselineOffset的:

NSAttributedStringKey.baselineOffset: (attributes.lineHeight - font.lineHeight) / 4

像魅力一样工作:

https://i.imgur.com/a2EOf5R.png