码迷,mamicode.com
首页 > 其他好文 > 详细

如何在UILabel第一个元素前加图片

时间:2016-08-02 11:36:40      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

 

注意:未经本人同意,请勿转发

 

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0    , 100, 200, 44)];

[self.view addSubview:label];

NSMutableAttributedString *goalTipStr = [[NSMutableAttributedString alloc]initWithString:@"123456"];
NSTextAttachment *alertImg = [[NSTextAttachment alloc]init];
alertImg.image = [UIImage imageNamed:@"!_gray"];
alertImg.bounds=CGRectMake(0, -2, 13, 13);
NSAttributedString *imgStr = [NSAttributedString attributedStringWithAttachment:alertImg];
[goalTipStr insertAttributedString:imgStr atIndex:0];


label.text = goalTipStr ;
           

 

效果图。。。。。

技术分享

 

如何在UILabel第一个元素前加图片

标签:

原文地址:http://www.cnblogs.com/Yishu/p/5728427.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!