如何在NSAttributedString(ios)中为下划线样式应用颜色?

时间:2014-10-28 08:57:50

标签: ios nsattributedstring

假设我在NSAttributedString中添加下划线样式:

[attrStr addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:range];

是否可以在不改变文字颜色的情况下将颜色(不仅是下划线样式)应用于下划线?

1 个答案:

答案 0 :(得分:3)

是。使用NSUnderlineColorAttributeName设置下划线颜色。

[attrStr addAttribute:NSUnderlineColorAttributeName value:[UIColor redColor] range:range];