// // PBLiveRoomChatView.h // PBSDK // // Created by LStar on 2025/1/5. // #import @class EMChatMessage; NS_ASSUME_NONNULL_BEGIN @interface PBLiveRoomChatView : UIView ///聊天view @property (nonatomic,copy) void (^beginDragging)(PBLiveRoomChatView *chatView); - (void)insertText:(NSString *)message; - (void)insertMessage:(EMChatMessage *)message; @end @interface PBLiveRoomChatTextCell : UITableViewCell ///文本label @property (nonatomic,strong)UILabel *label; @property (nonatomic,strong)UIView *leftView; @end NS_ASSUME_NONNULL_END