我的代码已经有了这个属性,但是如何为下划线添加属性?
NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:
boldFont, NSFontAttributeName, foregroundColor, NSForegroundColorAttributeName, nil];
答案 0 :(得分:13)
只需添加NSUnderlineStyleAttributeName
密钥并将@(NSUnderlineStyleSingle)
作为值:
NSDictionary *attrs = @{ NSFontAttributeName : boldFont,
NSForegroundColorAttributeName : foregroundColor,
NSUnderlineStyleAttributeName : @(NSUnderlineStyleSingle) };