30 lines
625 B
Objective-C
30 lines
625 B
Objective-C
//
|
|
// QXDynamicCommentInputView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/6/4.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol QXDynamicCommentInputViewDelegate <NSObject>
|
|
|
|
@optional
|
|
|
|
-(void)didClickSendWithText:(NSString*)text model:(QXDynamicCommentListModel*)model;
|
|
|
|
-(void)didResignFirstResponder;
|
|
|
|
@end
|
|
|
|
@interface QXDynamicCommentInputView : UIView
|
|
@property (nonatomic,strong)UITextField *textField;
|
|
@property (nonatomic,strong)QXDynamicCommentListModel *model;
|
|
@property (nonatomic,weak)id<QXDynamicCommentInputViewDelegate>delegate;
|
|
|
|
-(void)inputBecomeFirstResponder;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|