酷店

KDPScreenViewController.h 715B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // KDPScreenViewController.h
  3. // KuDianProject
  4. //
  5. // Created by admin on 2019/7/8.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import "KDPMainViewController.h"
  9. typedef void(^GetProfitBlock)(NSString *baseScale);
  10. typedef void(^GetPriceBlock)(NSString *minPrice, NSString *maxPrice);
  11. typedef void(^resetBlock)(BOOL isPrice);
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface KDPScreenViewController : KDPMainViewController
  14. - (instancetype)initWithPrice:(BOOL)price;
  15. @property (nonatomic, copy) GetProfitBlock profitBlock;
  16. @property (nonatomic, copy) GetPriceBlock priceBlock;
  17. @property (nonatomic, copy) resetBlock resetBlock;
  18. @property (nonatomic, strong) NSDictionary *params;
  19. @end
  20. NS_ASSUME_NONNULL_END