2

我的代码已经有了这个属性,但是如何为下划线添加属性?

NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys: 
boldFont, NSFontAttributeName, foregroundColor, NSForegroundColorAttributeName, nil];
4

1 回答 1

13

只需添加一个作为值的NSUnderlineStyleAttributeName键:@(NSUnderlineStyleSingle)

NSDictionary *attrs = @{ NSFontAttributeName : boldFont, 
                         NSForegroundColorAttributeName : foregroundColor,
                         NSUnderlineStyleAttributeName : @(NSUnderlineStyleSingle) };
于 2013-09-16T02:42:09.350 回答