Files
yinmeng-ios/xplan-ios/Main/Room/View/MenuContainerView/XPRoomSendTextView.h
2022-05-05 11:09:55 +08:00

22 lines
447 B
Objective-C

//
// XPRoomSendTextView.h
// xplan-ios
//
// Created by 冯硕 on 2021/10/29.
//
#import <UIKit/UIKit.h>
#import "RoomHostDelegate.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPRoomSendTextView : UIView
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
///发小消息的弹框
+ (void)showTextView:(UIView *)view delegate:(id<RoomHostDelegate>)delegate atUid:(NSString *)uid atNick:(NSString *)nick;
@end
NS_ASSUME_NONNULL_END