Files
peko-ios/YuMi/Modules/YMRoom/View/MenuContainerView/XPRoomSendTextView.h
2023-09-28 18:29:41 +08:00

23 lines
528 B
Objective-C

//
// YMRoomSendTextView.h
// YUMI
//
// Created by YUMI on 2021/10/29.
//
#import <UIKit/UIKit.h>
#import "RoomHostDelegate.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPRoomSendTextView : UIView
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
///输入框
@property (nonatomic, strong, readonly) UITextField *editTextFiled;
///发小消息的弹框
+ (instancetype)showTextView:(UIView *)view delegate:(id<RoomHostDelegate>)delegate atUid:(NSString *)uid atNick:(NSString *)nick;
@end
NS_ASSUME_NONNULL_END