新浪微博客户端(51)-将表情图片转换为文本

DJEmotionTextView 转换方法

- (NSMutableString *)fullText {

    NSMutableString *text = [[NSMutableString alloc] init];
    // 遍历当前attributedText,此API会自动分割attributedText中存在的文本,Emoji,表情,且每遍历一次会调用usingBlock,block中传入的
    // attrs,range 分别代表文本或表情的属性和范围
    [self.attributedText enumerateAttributesInRange:NSMakeRange(0, self.attributedText.length) options:0 usingBlock:^(NSDictionary<NSString *,id> * _Nonnull attrs, NSRange range, BOOL * _Nonnull stop) {

        DJEmotionAttachment *attachment = attrs[@"NSAttachment"];
        // 取出属性字典中的NSAttachment属性所对应的值
        if (!attachment) { // 没有附件(纯文本,Emoji)
            
            // 根据返回的range截取指定的attributedText
            NSAttributedString *str = [self.attributedText attributedSubstringFromRange:range];
            [text appendString:str.string]; // 将NSAttributedString转换为NSString 拼接文本
            
        } else { // 有附件(表情图片) 需要取出表情图片对应的文本
            [text appendString:attachment.emotion.chs]; // 拼接文本
        }
        
    }];

    return text;
}

DJEmotionAttachment.h

#import <UIKit/UIKit.h>

@class DJEmotion;
@interface DJEmotionAttachment : NSTextAttachment

/** 表情实体 */
@property (nonatomic,strong) DJEmotion *emotion;

@end

DJEmotionAttachment.m

#import "DJEmotionAttachment.h"
#import "DJEmotion.h"


@implementation DJEmotionAttachment

- (void)setEmotion:(DJEmotion *)emotion {
    _emotion = emotion;
    
    NSString *emotionName = emotion.png;
    NSString *imagePath;
    if ([emotionName hasPrefix:@"d_"] || [emotionName hasPrefix:@"f_"] ||
        [emotionName hasPrefix:@"h_"] || [emotionName hasPrefix:@"l_"] || [emotionName hasPrefix:@"o_"] || [emotionName hasPrefix:@"w_"]) {
        imagePath = [NSString stringWithFormat:@"EmotionIcons/default/%@",emotion.png]; // 默认表情路径
    } else if ([emotionName hasPrefix:@"lxh_"]) {
        imagePath = [NSString stringWithFormat:@"EmotionIcons/lxh/%@",emotion.png]; // 浪小花表情路径
    }

    // 设置当前attachment的image
    self.image = [UIImage imageNamed:imagePath];
}


@end

最终效果:

 

 

待发送的文本为:

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值