YOUPAISelectBirthdayPickVC.h 856 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YOUPAISelectBirthdayPickVC.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/3.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIPickerViewHeader.h"
  10. #import "PGDatePickManager.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @class YOUPAISelectBirthdayPickVC;
  13. @protocol YOUPAISelectBirthdayPickVCDelegate <NSObject>
  14. -(void)didSelectBirthday:(YOUPAISelectBirthdayPickVC*)vc birthday:(NSDateComponents*)birthday;
  15. @end
  16. @interface YOUPAISelectBirthdayPickVC : ZYBaseWindow<PGDatePickerDelegate>
  17. @property (nonatomic, weak) id<YOUPAISelectBirthdayPickVCDelegate> delegate;
  18. @property(strong,nonatomic) UIView* customView;
  19. @property(strong,nonatomic) NSDateComponents* selectDate;
  20. @property (nonatomic, strong) PGDatePicker *datePicker;
  21. @property (nonatomic, strong) YOUPAIPickerViewHeader* youpaipHeader;
  22. @end
  23. NS_ASSUME_NONNULL_END