建立具有自定義字距調整的字串(字母間距)
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];