1234567891011121314151617181920212223242526272829 |
- //
- // YOUPAISelectBirthdayPickVC.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/3.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIPickerViewHeader.h"
- #import "PGDatePickManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @class YOUPAISelectBirthdayPickVC;
- @protocol YOUPAISelectBirthdayPickVCDelegate <NSObject>
- -(void)didSelectBirthday:(YOUPAISelectBirthdayPickVC*)vc birthday:(NSDateComponents*)birthday;
- @end
- @interface YOUPAISelectBirthdayPickVC : ZYBaseWindow<PGDatePickerDelegate>
- @property (nonatomic, weak) id<YOUPAISelectBirthdayPickVCDelegate> delegate;
- @property(strong,nonatomic) UIView* customView;
- @property(strong,nonatomic) NSDateComponents* selectDate;
- @property (nonatomic, strong) PGDatePicker *datePicker;
- @property (nonatomic, strong) YOUPAIPickerViewHeader* youpaipHeader;
- @end
- NS_ASSUME_NONNULL_END
|