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

NSAttributedString

时间:2015-09-25 18:49:27      阅读:559      评论:0      收藏:0      [点我收藏+]

标签:

        1.//加载图片
        NSTextAttachment *attch = [[NSTextAttachment alloc] init];
        attch.image = [UIImage imageNamed:emotion.png];
        CGFloat attchWH = self.font.lineHeight;
        attch.bounds = CGRectMake(0, -4, attchWH, attchWH);
        //根据附件创建一个属性文字
        NSAttributedString *imageStr = [NSAttributedString attributedStringWithAttachment:attch];
        
        2.//拼接文字
        [attributedText appendAttributedString:self.attributedText];
        
        3.//NSAttributedString转化为NSString
        NSString *str = attributedText.string


NSAttributedString

标签:

原文地址:http://my.oschina.net/u/2346786/blog/511306

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