美文网首页
图文混排

图文混排

作者: iOS程序媛ing | 来源:发表于2018-02-08 15:51 被阅读4次

- (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;

}

相关文章

网友评论

      本文标题:图文混排

      本文链接:https://www.haomeiwen.com/subject/tvpttftx.html