20 lines
436 B
Objective-C
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
|