新浪微博客户端(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
复制代码

最终效果:

 

 

待发送的文本为:

 



如果您觉得阅读本文对您有帮助,请点一下“推荐”按钮,您的“推荐”将是我最大的写作动力!欢迎各位转载,但是未经作者本人同意,转载文章之后必须在文章页面明显位置给出作者和原文连接,否则保留追究法律责任的权利。
posted @   夜行过客  阅读(1085)  评论(0编辑  收藏  举报
编辑推荐:
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
阅读排行:
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
点击右上角即可分享
微信分享提示