23 lines
371 B
Objective-C
23 lines
371 B
Objective-C
//
|
|
// QXMyHistoryHeaderView.h
|
|
// IsLandVoice
|
|
//
|
|
// Created by 启星 on 2025/4/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol QXMyHistoryHeaderViewDelegate <NSObject>
|
|
|
|
@optional
|
|
-(void)didClickClearBtn;
|
|
|
|
@end
|
|
|
|
@interface QXMyHistoryHeaderView : UIView
|
|
@property(nonatomic,weak)id<QXMyHistoryHeaderViewDelegate>delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|