123456789101112131415161718192021222324252627282930 |
- //
- // PBLiveRoomChatView.h
- // PBSDK
- //
- // Created by LStar on 2025/1/5.
- //
- #import <UIKit/UIKit.h>
- @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
|