Files
peko-ios/YuMi/Modules/YMRoom/View/RoomGame/View/SubView/MSRoomGameSendTextView.h
2024-06-07 17:10:06 +08:00

20 lines
436 B
Objective-C

//
// MSRoomGameSendTextView.h
// YuMi
//
// Created by duoban on 2024/5/30.
//
#import <UIKit/UIKit.h>
#import "UserInfoModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface MSRoomGameSendTextView : UIView
///输入框
@property (nonatomic, strong, readonly) UITextField *editTextFiled;
-(void)showInputView:(NSString *)text;
- (instancetype)initWithRoomId:(NSString *)roomId userInfo:(UserInfoModel *)userInfo;
@end
NS_ASSUME_NONNULL_END