ScanSearchViewController.h 842 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ScanSearchViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 3/30/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActiveViewController.h"
  10. #import "ScanRefreshStock.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface ScanSearchViewController : ActiveViewController<IScanRefreshStock>
  13. @property (weak, nonatomic) IBOutlet UITableView *tableview;
  14. @property (strong, nonatomic) NSMutableArray* modellist;
  15. @property (weak, nonatomic) IBOutlet UISearchBar *searchBar;
  16. @property (strong,nonatomic) NSString* keywords;
  17. @property (weak, nonatomic) IBOutlet UIView *headerView;
  18. @property (strong,nonatomic) NSString* load_more_hint;
  19. @property (weak, nonatomic) IBOutlet UILabel *labelStock;
  20. @property long offset;
  21. //@property bool loadall;
  22. @end
  23. NS_ASSUME_NONNULL_END