洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
478 B

7 months ago
  1. //
  2. // NFCDatePickerView.h
  3. // ZimDemo
  4. //
  5. // Created by 汪澌哲 on 2023/6/7.
  6. // Copyright © 2023 com.alipay. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NFCDatePickerView : UIView
  11. @property (nonatomic, copy) void (^onConfirm)(NSDate *);
  12. @property (nonatomic, copy) NSString *maxDate;
  13. - (void)showWithSelectedDate:(NSDate *)selectedDate onConfirm:(void (^)(NSDate *date))onConfirm;
  14. - (void)dismiss;
  15. @end
  16. NS_ASSUME_NONNULL_END