YOUPAILZBigCastSetSelectedPricePickerVC.h 986 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // YOUPAILZBigCastSetSelectedPricePickerVC.h
  3. // MSYOUPAI
  4. //
  5. // Created by CY on 2022/3/9.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import "ZYBaseWindow.h"
  9. #import "PGDatePicker.h"
  10. #import "UIViewController+TFPresent.h"
  11. #import "YOUPAIPickerViewHeader.h"
  12. #import "YOUPAILZBigCastSetPriceModel.h"
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface YOUPAILZBigCastSetSelectedPricePickerVC : ZYBaseWindow<PGPickerViewDelegate,PGPickerViewDataSource>
  15. @property(strong, nonatomic) NSMutableArray <YOUPAILZBigCastSetPriceModel *>*dataSouce;
  16. @property(assign, nonatomic) NSInteger selectIndex;
  17. //@property (nonatomic, weak) id<YOUPAILZBigCastSetSelectedPricePickerVCDelegate> delegate;
  18. @property (nonatomic, copy) void (^confirmBtnClickBlock)(YOUPAILZBigCastSetPriceModel *model);
  19. @property(strong,nonatomic) UIView* customView;
  20. @property (nonatomic, strong) PGPickerView *pickerView;
  21. @property (nonatomic, strong) YOUPAIPickerViewHeader* youpaipHeader;
  22. @end
  23. NS_ASSUME_NONNULL_END