我无法在任何地方找到一个简单的例子。这是我目前的代码所在......
(注意:名称是UILabel,fontWithCTFont来自UIFont类别)
CTFontRef helveticaBold = CTFontCreateWithName(CFSTR("Helvetica-Bold"), 24.0, NULL);
[name setFont:[UIFont fontWithCTFont:helveticaBold]];
答案 0 :(得分:2)
[attrStr addAttribute:(NSString*)kCTUnderlineStyleAttributeName value:[NSNumber numberWithInt:style] range:range];
其中,style是CTUnderlineStyle
和CTUnderlineStyleModifiers
值的按位掩码组合。
在github上查看我的OHAttributedLabel
课程,尤其是我的NSAttributedString+Attributes
类别