+ (id)stringWithDefaultStyle:(NSString *)string kern:(CGFloat)kernValue { NSNumber *kern = [NSNumber numberWithFloat:kernValue]; NSNumber *underline = [NSNumber numberWithInt:NSUnderlineStyleSingle]; UIFont *font = [UIFont boldSystemFontOfSize:17]; UIColor *color = kOrange(1.0);
NSDictionary *attrsDic = @{ NSKernAttributeName: kern, // 字间距 NSUnderlineStyleAttributeName: underline, // 下划线 NSForegroundColorAttributeName: color, // 字体颜色 NSFontAttributeName: font };
return [[NSAttributedString alloc] initWithString:string attributes:attrsDic]; }
|