YOUPAIPickerSelectValueVC.h 785 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // YOUPAIPickView.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 "PGDatePicker.h"
  10. #import "UIViewController+TFPresent.h"
  11. #import "YOUPAIPickerViewHeader.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. /**
  14. 选择身高
  15. */
  16. @interface YOUPAIPickerSelectValueVC : ZYBaseWindow<PGPickerViewDelegate,PGPickerViewDataSource>
  17. @property(strong, nonatomic) NSMutableArray* dataSouce;
  18. @property(assign, nonatomic) NSInteger selectIndex;
  19. @property(strong,nonatomic) UIView* customView;
  20. @property (nonatomic, strong) PGPickerView *pickerView;
  21. @property (nonatomic, strong) YOUPAIPickerViewHeader* youpaipHeader;
  22. @property (nonatomic, copy) void (^didFinishSelectBlock)(NSString * value);
  23. @end
  24. NS_ASSUME_NONNULL_END