23 lines
520 B
Objective-C
23 lines
520 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) :(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
|