12345678910111213141516171819202122232425262728293031323334 |
- //
- // KDPScreenViewController.h
- // KuDianProject
- //
- // Created by admin on 2019/7/8.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import "KDPMainViewController.h"
- typedef void(^GetProfitBlock)(NSString *baseScale);
- typedef void(^GetPriceBlock)(NSString *minPrice, NSString *maxPrice);
- typedef void(^resetBlock)(BOOL isPrice);
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPScreenViewController : KDPMainViewController
- - (instancetype)initWithPrice:(BOOL)price;
- @property (nonatomic, copy) GetProfitBlock profitBlock;
- @property (nonatomic, copy) GetPriceBlock priceBlock;
- @property (nonatomic, copy) resetBlock resetBlock;
- @property (nonatomic, strong) NSDictionary *params;
- @end
- NS_ASSUME_NONNULL_END
|