// // YOUPAISelectBirthdayPickVC.h // MSYOUPAI // // Created by admin on 2022/3/3. // Copyright © 2022 MS. All rights reserved. // #import #import "YOUPAIPickerViewHeader.h" #import "PGDatePickManager.h" NS_ASSUME_NONNULL_BEGIN @class YOUPAISelectBirthdayPickVC; @protocol YOUPAISelectBirthdayPickVCDelegate -(void)didSelectBirthday:(YOUPAISelectBirthdayPickVC*)vc birthday:(NSDateComponents*)birthday; @end @interface YOUPAISelectBirthdayPickVC : ZYBaseWindow @property (nonatomic, weak) id 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