NSMutableAttributedString *muteStr = [[NSMutableAttributedString alloc] initWithString:@"*封面图"];
[muteStr addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(0, 1)];
titleLabel.attributedText = muteStr;
NSFontAttributeName // 字体
NSParagraphStyleAttributeName // 段落格式
NSForegroundColorAttributeName // 字体颜色
NSBackgroundColorAttributeName // 背景颜色
NSStrikethroughStyleAttributeName // 删除线格式
NSUnderlineStyleAttributeName //下划线格式
NSStrokeColorAttributeName //删除线颜色
NSStrokeWidthAttributeName //删除线宽度
NSShadowAttributeName //阴影
网友评论