iOS UILable 文字添加图片 (文字前面,中间,后面添加图)

Posted 廖利君

tags:

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

1,实例化一个UILable

2,

 // 创建一个富文本

    NSMutableAttributedString *attri =     [[NSMutableAttributedString alloc] initWithString:@"超时罚款24元/小时"];

    NSTextAttachment *attch = [[NSTextAttachment alloc] init];

    // 表情图片

    attch.image = [UIImage imageNamed:@"parking_caveat_normal"];

    // 设置图片大小

    attch.bounds = CGRectMake(0, 0, 30/2, 27/2);

    // 创建带有图片的富文本

    NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:attch];

[attri appendAttributedString:string]; //在文字后面添加图片

 //在文字下标第几个添加图片  0就是文字前面添加图片

      [attri insertAttributedString:string atIndex:0]; 

    // 用label的attributedText属性来使用富文本

    实例化的lable.attributedText = attri;

以上是关于iOS UILable 文字添加图片 (文字前面,中间,后面添加图)的主要内容,如果未能解决你的问题,请参考以下文章

Unity-NGUI-UILable文字超链接

UILable UITextField 文字 左右 左右 垂直 居中 对其怎么解决

使用lowagie给pdf添加文字和图片水印

Attribute富文本使用方法

使用ffmpeg给视频添加图片及文字水印

移动端图片文字垂直居中实现方法