ScanHomeViewController.h 610 B

1234567891011121314151617181920
  1. //
  2. // ScanHomeViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 5/12/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 ScanHomeViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate>
  12. @property (weak, nonatomic) IBOutlet UITableView *table;
  13. @property (strong, nonatomic) NSArray* newslist;
  14. @property (weak, nonatomic) IBOutlet UIButton *btn_unsubmit;
  15. @property (weak, nonatomic) IBOutlet UIButton *btn_submit;
  16. @end
  17. NS_ASSUME_NONNULL_END