属性字符串添加图片

Posted 弋小木

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了属性字符串添加图片相关的知识,希望对你有一定的参考价值。

- (NSMutableAttributedString *)getAttributedStringWithSting:(NSString *)astring image:(UIImage *)image index:(NSInteger)index{
        // 1.创建一个富文本
    NSMutableAttributedString *attri =  [[NSMutableAttributedString alloc] initWithString:astring];
    
//        // 修改富文本中的不同文字的样式
//    [attri addAttribute:NSForegroundColorAttributeName value:[UIColor blueColor] range:NSMakeRange(0, 5)];
//    [attri addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:20] range:NSMakeRange(0, 5)];
//
//        // 设置数字为红色
//    [attri addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(5, 9)];
//    [attri addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:30] range:NSMakeRange(5, 9)];
    
        // 2.添加表情图片
    NSTextAttachment *attch = [[NSTextAttachment alloc] init];
        // 表情图片
    attch.image = image;
        // 设置图片大小
    attch.bounds = CGRectMake(0, -3, 16, 16);
    
        // 创建带有图片的富文本
    NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attch];
    [attri insertAttributedString:string atIndex:index];// 插入某个位置
    
    return attri;
}

以上是关于属性字符串添加图片的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Woocommerce 中的产品图片上添加热门属性(如销售)

c# listview 怎么添加图片

在C#中怎么用代码向listView中添加图片各文字?

qt里如何给button添加背景图片

(三十)商品管理-添加商品(上传图片)

js中创建img元素追加src属性添加图片 运行HTML图片不能加载