单军华
2018-07-11 acdf41fa3b32b628d9d7bba1f975060567dad3d7
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
28
29
//
//  HMEmoticonToolbar.h
//  表情键盘
//
//  Created by 刘凡 on 16/3/3.
//  Copyright © 2016年 itcast. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@protocol HMEmoticonToolbarDelegate;
 
@interface HMEmoticonToolbar : UIView
@property (nonatomic, weak, nullable) id<HMEmoticonToolbarDelegate> delegate;
 
/// 选中指定分组
///
/// @param section 分组
- (void)selectSection:(NSInteger)section;
@end
 
@protocol HMEmoticonToolbarDelegate <NSObject>
 
/// 表情工具栏选中分组
///
/// @param section 分组
- (void)emoticonToolbarDidSelectSection:(NSInteger)section;
 
@end