Files
peko-ios/YuMi/Modules/YMRoom/View/MessageContainerView/MsRoomMessageMainView.h

26 lines
621 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// MsRoomMessageMainView.h
// YuMi
//
// Created by duoban on 2024/5/10.
//
#import <UIKit/UIKit.h>
#import "RoomHostDelegate.h"
#import "RoomGuestDelegate.h"
#import "XPRoomMessageContainerView.h"
NS_ASSUME_NONNULL_BEGIN
@interface MsRoomMessageMainView : UIView<RoomGuestDelegate>
- (void)showUserCard:(NSInteger)uid;
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
- (void)handleNIMImageMessage:(NIMMessage *)message;
///0房间1.聊天大厅
@property(nonatomic,assign) NSInteger type;
@property(nonatomic,strong) XPRoomMessageContainerView *messageListView;
@end
NS_ASSUME_NONNULL_END