TUIChatPopRecentView.h 780 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // TUIChatPopRecentView.h
  3. // TUIChat
  4. //
  5. // Created by wyl on 2022/5/25.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class TUIChatPopRecentView;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol TUIChatPopRecentEmojiDelegate <NSObject>
  12. - (void)popRecentViewClickArrow:(TUIChatPopRecentView *)faceView;
  13. - (void)popRecentViewClickface:(TUIChatPopRecentView *)faceView tag:(NSInteger)tag;
  14. @end
  15. @interface TUIChatPopRecentView : UIView
  16. @property(nonatomic, strong, readonly) NSMutableArray *faceGroups;
  17. @property(nonatomic, assign) BOOL needShowbottomLine;
  18. @property(nonatomic, strong) UIButton *arrowButton;
  19. - (void)setData:(NSMutableArray *)data;
  20. @property(nonatomic, weak) id<TUIChatPopRecentEmojiDelegate> delegate;
  21. @end
  22. NS_ASSUME_NONNULL_END