Files
yinmeng-ios-store/yinmeng-ios/DingDangApp/CodeClass/Room/View/PublicMessage/RoomPublicMessageView.h
2023-12-14 16:53:50 -08:00

26 lines
577 B
Objective-C

//
// RoomPublicScreenView.h
// DingDangApp
//
// Created by apple on 2023/5/27.
//
#import "WLBaseView.h"
#import <NIMSDK/NIMSDK.h>
#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