// // HMEmoticonToolbar.h // 表情键盘 // // Created by 刘凡 on 16/3/3. // Copyright © 2016年 itcast. All rights reserved. // #import @protocol HMEmoticonToolbarDelegate; @interface HMEmoticonToolbar : UIView @property (nonatomic, weak, nullable) id delegate; /// 选中指定分组 /// /// @param section 分组 - (void)selectSection:(NSInteger)section; @end @protocol HMEmoticonToolbarDelegate /// 表情工具栏选中分组 /// /// @param section 分组 - (void)emoticonToolbarDidSelectSection:(NSInteger)section; @end