22 lines
423 B
Objective-C
22 lines
423 B
Objective-C
//
|
|
// XPRoomQuickMessageContainView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/9/28.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RoomHostDelegate.h"
|
|
#import "RoomGuestDelegate.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomQuickMessageContainView : UIView<RoomGuestDelegate>
|
|
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
|
|
|
@property (nonatomic, strong) NSArray *titleArray;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|