// // QXDynamicCommentInputView.h // QXLive // // Created by 启星 on 2025/6/4. // #import NS_ASSUME_NONNULL_BEGIN @protocol QXDynamicCommentInputViewDelegate @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)iddelegate; -(void)inputBecomeFirstResponder; @end NS_ASSUME_NONNULL_END