文字添加图片
作者:
Skysama | 来源:发表于
2019-06-18 11:18 被阅读0次NSMutableAttributedString * attriStr = [[NSMutableAttributedString alloc] initWithString:@"你好呀"];
/**
添加图片到指定的位置
*/
NSTextAttachment *attchImage = [[NSTextAttachment alloc] init];
// 表情图片
attchImage.image = [UIImage imageNamed:@"icon"];
// 设置图片大小
attchImage.bounds = CGRectMake(2, 0, 12, 12);
NSAttributedString *stringImage = [NSAttributedString attributedStringWithAttachment:attchImage];
[attriStr insertAttributedString:stringImage atIndex:4];
cell.textLabel.attributedText = attriStr;
本文标题:文字添加图片
本文链接:https://www.haomeiwen.com/subject/iowxqctx.html
网友评论