Files
midi_ios/QXLive/Dynamic(语圈)/View/详情/QXDynamicCommentInputView.h

30 lines
625 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// 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;
2025-10-13 14:16:49 +08:00
-(void)didResignFirstResponder;
2025-08-14 10:07:49 +08:00
@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