ScanSearchViewController.h 736 B

1234567891011121314151617181920212223242526
  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 long offset;
  19. //@property bool loadall;
  20. @end
  21. NS_ASSUME_NONNULL_END