Files
midi_ios/QXLive/Mine(音域)/View/钱包/QXWalletDateView.h
2025-08-14 10:07:49 +08:00

22 lines
470 B
Objective-C

//
// QXWalletDateView.h
// QXLive
//
// Created by 启星 on 2025/5/27.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol QXWalletDateViewDelegate <NSObject>
@optional
-(void)didSelectedStartDate:(NSString*)startDateString startDate:(NSDate*)startDate endDateString:(NSString*)endDateString endDate:(NSDate*)endDate;
@end
@interface QXWalletDateView : UIView
@property (nonatomic,weak)id<QXWalletDateViewDelegate>delegate;
@end
NS_ASSUME_NONNULL_END