timeManageSheetView.h 433 B

1234567891011121314151617181920
  1. //
  2. // timeManageSheetView.h
  3. // ADHTuanCan
  4. //
  5. // Created by 敖德亨 on 2023/10/7.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface timeManageSheetView : UIView
  10. -(void)showWithStaStr:(NSString *) staStr endStr:(NSString *)endStr beginDate:(NSDate *)beginDate;
  11. -(void)hidden;
  12. @property(nonatomic,copy) void(^selectCheckDateBlock)(NSString *startDate,NSString *endDate,NSString *days);
  13. @end
  14. NS_ASSUME_NONNULL_END