UILabelSO 问题来了

Label后加小图标

2017-02-11  本文已影响9人  失忆的程序员

NSMutableAttributedString*attri = [[NSMutableAttributedStringalloc]initWithString:[NSStringstringWithFormat:@"%@ ",fields.title]];

// 添加表情

NSTextAttachment*attch = [[NSTextAttachmentalloc]init];

// 表情图片

attch.image= [UIImageimageNamed:@"newTopList"];

// 设置图片大小

attch.bounds= CGRectMake(10,0,25,14);

if([fields.isnewboolValue]) {

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

NSAttributedString*strings = [NSAttributedStringattributedStringWithAttachment:attch];

[attriappendAttributedString:strings];

}

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

_titleLabel.attributedText= attri;

上一篇 下一篇

猜你喜欢

热点阅读