1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| //
| // HMEmoticonAttachment.h
| // 表情键盘
| //
| // Created by 刘凡 on 16/3/5.
| // Copyright © 2016年 itcast. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
| @class HMEmoticon;
|
| @interface HMEmoticonAttachment : NSTextAttachment
| @property (nonatomic, readonly, nullable) NSString *text;
|
| /// 使用表情模型创建表情字符串
| ///
| /// @param emoticon 表情模型
| /// @param font 字体
| /// @param textColor 颜色
| ///
| /// @return 属性文本
| + (NSAttributedString * _Nonnull)emoticonStringWithEmoticon:(HMEmoticon * _Nullable)emoticon font:(UIFont * _Nonnull)font textColor:(UIColor * _Nonnull)textColor;
|
| @end
|
|