// // QXDynamicCommentHeaderView.h // QXLive // // Created by 启星 on 2025/6/4. // #import NS_ASSUME_NONNULL_BEGIN @protocol QXDynamicCommentHeaderViewDelegate @optional -(void)didClickDeleteComment:(QXDynamicCommentListModel*)model; -(void)didClickReplyComment:(QXDynamicCommentListModel*)model; @end @interface QXDynamicCommentHeaderView : UIView @property (nonatomic,strong)QXDynamicCommentListModel *model; @property (nonatomic,weak)id delegate; @end NS_ASSUME_NONNULL_END