swift设置行高,字间距

设置行高,关键词NSAttributedString.Key.paragraphStyle
attribute 属性
paragraph 段落

// 设置行间距
let style = NSMutableParagraphStyle()
// 间隙
style.lineSpacing = 5
label.attributedText = NSAttributedString(string: text,
                            attributes: [NSAttributedString.Key.paragraphStyle: style])

设置字间距,关键词NSAttributedString.Key.kern
kern 紧排

// 字间距
label.attributedText = NSAttributedString(string: "累计鉴别已超过", 
                            attributes: [NSAttributedString.Key.kern : 5])

你可能感兴趣的:(swift设置行高,字间距)