設(shè)置行高,關(guān)鍵詞NSAttributedString.Key.paragraphStyle
attribute 屬性
paragraph 段落
// 設(shè)置行間距
let style = NSMutableParagraphStyle()
// 間隙
style.lineSpacing = 5
label.attributedText = NSAttributedString(string: text,
attributes: [NSAttributedString.Key.paragraphStyle: style])
設(shè)置字間距,關(guān)鍵詞NSAttributedString.Key.kern
kern 緊排
// 字間距
label.attributedText = NSAttributedString(string: "累計(jì)鑒別已超過(guò)",
attributes: [NSAttributedString.Key.kern : 5])