单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  HMEmoticonPackage.h
//  表情键盘
//
//  Created by 刘凡 on 16/3/3.
//  Copyright © 2016年 itcast. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import "HMEmoticon.h"
 
/// 表情包模型
@interface HMEmoticonPackage : NSObject
 
/// 表情包分组名
@property (nonatomic, copy, nonnull) NSString *groupName;
/// 表情包所在目录
@property (nonatomic, copy, nullable) NSString *directory;
/// 表情包对应背景图片名称
@property (nonatomic, copy, nonnull) NSString *bgImageName;
/// 表情包中的`表情模型`数组
@property (nonatomic, nonnull) NSMutableArray <HMEmoticon *>*emoticonsList;
 
+ (nonnull instancetype)packageWithDict:(NSDictionary * _Nonnull)dict;
- (nonnull instancetype)initWithDict:(NSDictionary * _Nonnull)dict;
 
@end