单军华
2018-07-19 83b9d5c682b21d88133f24da0f94dd56bd79e687
screendisplay/Pods/HMEmoticon/????/Emoticon/HMEmoticonToolbar.h
New file
@@ -0,0 +1,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