ScanSearchViewController.h 794 B

123456789101112131415161718192021222324252627
  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. NS_ASSUME_NONNULL_BEGIN
  11. @interface ScanSearchViewController : ActiveViewController
  12. @property (weak, nonatomic) IBOutlet UITableView *tableview;
  13. @property (strong, nonatomic) NSMutableArray* modellist;
  14. @property (weak, nonatomic) IBOutlet UISearchBar *searchBar;
  15. @property (strong,nonatomic) NSString* keywords;
  16. @property (weak, nonatomic) IBOutlet UIView *headerView;
  17. @property (strong,nonatomic) NSString* load_more_hint;
  18. @property (weak, nonatomic) IBOutlet UILabel *labelStock;
  19. @property long offset;
  20. //@property bool loadall;
  21. @end
  22. NS_ASSUME_NONNULL_END