PBLiveRoomChatView.h 567 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // PBLiveRoomChatView.h
  3. // PBSDK
  4. //
  5. // Created by LStar on 2025/1/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class EMChatMessage;
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PBLiveRoomChatView : UIView
  11. ///聊天view
  12. @property (nonatomic,copy) void (^beginDragging)(PBLiveRoomChatView *chatView);
  13. - (void)insertText:(NSString *)message;
  14. - (void)insertMessage:(EMChatMessage *)message;
  15. @end
  16. @interface PBLiveRoomChatTextCell : UITableViewCell
  17. ///文本label
  18. @property (nonatomic,strong)UILabel *label;
  19. @property (nonatomic,strong)UIView *leftView;
  20. @end
  21. NS_ASSUME_NONNULL_END