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

26 lines
552 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// QXDynamicCommentHeaderView.h
// QXLive
//
// Created by 启星 on 2025/6/4.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol QXDynamicCommentHeaderViewDelegate <NSObject>
@optional
-(void)didClickDeleteComment:(QXDynamicCommentListModel*)model;
-(void)didClickReplyComment:(QXDynamicCommentListModel*)model;
@end
@interface QXDynamicCommentHeaderView : UIView
@property (nonatomic,strong)QXDynamicCommentListModel *model;
@property (nonatomic,weak)id<QXDynamicCommentHeaderViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END