NSMutableAttributedString*attri = [[NSMutableAttributedStringalloc]initWithString:[NSStringstringWithFormat:@"%@ ",fields.title]];
//?添加表情
NSTextAttachment*attch?=?[[NSTextAttachmentalloc]init];
//?表情圖片
attch.image=?[UIImageimageNamed:@"newTopList"];
//?設(shè)置圖片大小
attch.bounds=?CGRectMake(10,0,25,14);
if([fields.isnewboolValue])?{
//?創(chuàng)建帶有圖片的富文本
NSAttributedString*strings?=?[NSAttributedStringattributedStringWithAttachment:attch];
[attriappendAttributedString:strings];
}
//?用label的attributedText屬性來使用富文本
_titleLabel.attributedText=?attri;