1234567891011121314151617181920212223242526272829303132333435 |
- //
- // YOUPAIPickView.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/3.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PGDatePicker.h"
- #import "UIViewController+TFPresent.h"
- #import "YOUPAIPickerViewHeader.h"
- NS_ASSUME_NONNULL_BEGIN
- /**
- 选择身高
- */
- @interface YOUPAIPickerSelectValueVC : ZYBaseWindow<PGPickerViewDelegate,PGPickerViewDataSource>
- @property(strong, nonatomic) NSMutableArray* dataSouce;
- @property(assign, nonatomic) NSInteger selectIndex;
- @property(strong,nonatomic) UIView* customView;
- @property (nonatomic, strong) PGPickerView *pickerView;
- @property (nonatomic, strong) YOUPAIPickerViewHeader* youpaipHeader;
- @property (nonatomic, copy) void (^didFinishSelectBlock)(NSString * value);
- @end
- NS_ASSUME_NONNULL_END
|