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

发布emoji

时间:2016-05-24 22:20:54      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

- (NSString *)fullStr// 在UITextView中的需要发送的文字文字

{

    NSMutableString *fullText = [[NSMutableString alloc] init];

        [self.attributedText enumerateAttributesInRange:NSMakeRange(0, self.attributedText.length) options:0 usingBlock:^(NSDictionary<NSString *,id> * _Nonnull attrs, NSRange range, BOOL * _Nonnull stop) {

        YSWeiBoNSTextAttachment *attachment = attrs[@"NSAttachment"];// 是否为图片

        if (attachment)// 如果是表情图片

        {

            [fullText appendString:[NSString stringWithFormat:@"%@",attachment.emotion.chs]];// 获取文字对应的描述字符串

        }

        else

        {

            NSAttributedString *attributedString = [self.attributedText attributedSubstringFromRange:range];

            [fullText appendString:attributedString.string];

        }

    }];

    

    return fullText;

}

 

发布emoji

标签:

原文地址:http://www.cnblogs.com/happyEveryData/p/5524796.html

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