Files
featherVoice/QXLive/Dynamic(语圈)/View/详情/QXDynamicCommentInputView.h
2025-10-27 17:05:46 +08:00

32 lines
658 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;
-(void)didBecomeFirstResponder;
@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