假设我在NSAttributedString中添加下划线样式:
[attrStr addAttribute:NSUnderlineStyleAttributeName value:@(NSUnderlineStyleSingle) range:range];
是否可以在不改变文字颜色的情况下将颜色(不仅是下划线样式)应用于下划线?
答案 0 :(得分:3)
是。使用NSUnderlineColorAttributeName
设置下划线颜色。
[attrStr addAttribute:NSUnderlineColorAttributeName value:[UIColor redColor] range:range];