Files
peko-ios/YuMi/Modules/YMRoom/View/MenuContainerView/XPRoomSendTextView.h
eggmanQQQ 37702749e7 优化
删除不使用的方法
删除/补充不必要的换行
通过 nullable 处理部分警告
2024-05-30 19:25:03 +08:00

28 lines
589 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;
-(void)showInputView:(NSString *)text;
///发小消息的弹框
+ (instancetype)showTextView:(UIView *)view delegate:(id<RoomHostDelegate>)delegate atUid:(nullable NSString *)uid atNick:(nullable NSString *)nick;
@end
NS_ASSUME_NONNULL_END