1234567891011121314151617181920 |
- //
- // timeManageSheetView.h
- // ADHTuanCan
- //
- // Created by 敖德亨 on 2023/10/7.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface timeManageSheetView : UIView
- -(void)showWithStaStr:(NSString *) staStr endStr:(NSString *)endStr beginDate:(NSDate *)beginDate;
- -(void)hidden;
- @property(nonatomic,copy) void(^selectCheckDateBlock)(NSString *startDate,NSString *endDate,NSString *days);
- @end
- NS_ASSUME_NONNULL_END
|