// // RoomPublicScreenView.h // DingDangApp // // Created by apple on 2023/5/27. // #import "WLBaseView.h" #import #import "RoomInfoModel.h" NS_ASSUME_NONNULL_BEGIN @interface RoomPublicMessageView : WLBaseView /**数据**/ @property (nonatomic, strong) NSMutableArray *dataArr; /**刷新公屏列表**/ - (void)refreshTableView; - (void)handleRecvMessages:(NIMMessage *)message; - (void)roomInfo:(RoomInfoModel *)roomInfo; /**点击**/ @property (nonatomic, copy) void(^cellTapGesActionBlock)(RoomUserInfoModel *userModel); @end NS_ASSUME_NONNULL_END