22 lines
470 B
Objective-C
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
|