建立具有自定義字距(字母間距)editshare 的字串

NSAttributedString(及其可變的兄弟 NSMutableAttributedString)允許你建立外觀複雜的字串給使用者。

一個常見的應用是使用它來顯示字串並新增自定義字距調整/字母間距。

這將實現如下(其中 label 是 UILabel),為 kerning 這個詞提供不同的字距調整

NSMutableAttributedString *attributedString;
attributedString = [[NSMutableAttributedString alloc] initWithString:@"Apply kerning"];
[attributedString addAttribute:NSKernAttributeName value:@5 range:NSMakeRange(6, 7)];
[label setAttributedText:attributedString];