创建具有自定义字距调整的字符串(字母间距)
NSAttributedString
(及其可变的兄弟 NSMutableAttributedString
)允许你创建外观复杂的字符串给用户。
一个常见的应用是使用它来显示字符串并添加自定义字距调整/字母间距。
这将实现如下(其中 label 是 UILabel
),为 kerning
这个词提供不同的字距调整
迅速
var attributedString = NSMutableAttributedString("Apply kerning")
attributedString.addAttribute(attribute: NSKernAttributeName, value: 5, range: NSMakeRange(6, 7))
label.attributedText = attributedString
Objective-C
NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply kerning"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(6, 7)];
[label setAttributedText:attributedString];