123456789101112131415161718192021222324252627282930313233343536 |
- //
- // YOUPAILZBigCastSetSelectedPricePickerVC.h
- // MSYOUPAI
- //
- // Created by CY on 2022/3/9.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import "ZYBaseWindow.h"
- #import "PGDatePicker.h"
- #import "UIViewController+TFPresent.h"
- #import "YOUPAIPickerViewHeader.h"
- #import "YOUPAILZBigCastSetPriceModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZBigCastSetSelectedPricePickerVC : ZYBaseWindow<PGPickerViewDelegate,PGPickerViewDataSource>
- @property(strong, nonatomic) NSMutableArray <YOUPAILZBigCastSetPriceModel *>*dataSouce;
- @property(assign, nonatomic) NSInteger selectIndex;
- //@property (nonatomic, weak) id<YOUPAILZBigCastSetSelectedPricePickerVCDelegate> delegate;
- @property (nonatomic, copy) void (^confirmBtnClickBlock)(YOUPAILZBigCastSetPriceModel *model);
- @property(strong,nonatomic) UIView* customView;
- @property (nonatomic, strong) PGPickerView *pickerView;
- @property (nonatomic, strong) YOUPAIPickerViewHeader* youpaipHeader;
- @end
- NS_ASSUME_NONNULL_END
|