| 12345678910111213141516171819202122232425 |
- //
- // StockViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 6/21/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface StockViewController : UIViewController
- @property (weak, nonatomic) IBOutlet UITableView *table;
- @property (strong, nonatomic) NSMutableArray* data;
- @property (strong, nonatomic) NSMutableArray* idata;
- @property (strong, nonatomic) NSMutableArray* bdata;
- @property (strong, nonatomic) NSMutableArray* sdata;
- @property NSUInteger taptime;
- @property (strong, nonatomic) NSIndexPath* lasttap;
- @property (nonatomic , copy) void (^returnValue)(NSMutableDictionary* models);
- @end
- NS_ASSUME_NONNULL_END
|