- (NSMutableAttributedString*)AttributedString:(NSString*)name content:(NSString*)content{
// 富文本技术:
// 1.图文混排
// 2.随意修改文字样式
//拿到整体的字符串
NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:[NSStringstringWithFormat:@"%@%@",name,content]];
// 设置 name 颜色,也可以设置字体大小等
[string addAttribute:NSForegroundColorAttributeName value:[UIColorcolorWithHexString:@"#576b95"] range:NSMakeRange(0, name.length)];
// 创建图片图片附件
NSTextAttachment *attach = [[NSTextAttachmentalloc] init];
attach.image = [UIImage imageNamed:@"detail_icon_caption_black_normal_14x14_"]; attach.bounds =CGRectMake(0,0,14,14);
NSAttributedString *attachString = [NSAttributedString attributed StringWithAttachment:attach];
//将图片插入到合适的位置
[string insertAttributedString:attachString atIndex:0];
return string;
}
网友评论