StockViewController.h 729 B

12345678910111213141516171819202122232425
  1. //
  2. // StockViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 6/21/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface StockViewController : UIViewController
  11. @property (weak, nonatomic) IBOutlet UITableView *table;
  12. @property (strong, nonatomic) NSMutableArray* data;
  13. @property (strong, nonatomic) NSMutableArray* idata;
  14. @property (strong, nonatomic) NSMutableArray* bdata;
  15. @property (strong, nonatomic) NSMutableArray* sdata;
  16. @property NSUInteger taptime;
  17. @property (strong, nonatomic) NSIndexPath* lasttap;
  18. @property (nonatomic , copy) void (^returnValue)(NSMutableDictionary* models);
  19. @end
  20. NS_ASSUME_NONNULL_END