EaseChatBarEmoticonView.h 724 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // EaseChatBarEmoticonView.h
  3. // ChatDemo-UI3.0
  4. //
  5. // Created by XieYajie on 2019/1/30.
  6. // Copyright © 2019 XieYajie. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "EaseEmoticonGroup.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol EaseChatBarEmoticonViewDelegate;
  12. @interface EaseChatBarEmoticonView : UIView
  13. @property (nonatomic, weak) id<EaseChatBarEmoticonViewDelegate> delegate;
  14. @property (nonatomic, readonly) CGFloat viewHeight;
  15. - (void)textDidChange:(BOOL)isEditing;
  16. @end
  17. @protocol EaseChatBarEmoticonViewDelegate <NSObject>
  18. @optional
  19. - (void)didSelectedEmoticonModel:(EaseEmoticonModel *)aModel;
  20. - (BOOL)didSelectedTextDetele;
  21. - (void)didChatBarEmoticonViewSendAction;
  22. @end
  23. NS_ASSUME_NONNULL_END