ScanUserListViewController.h 488 B

1234567891011121314151617181920
  1. //
  2. // ScanUserListViewController.h
  3. // HMLG Scan Order
  4. //
  5. // Created by Rui Zhang on 2/22/22.
  6. // Copyright © 2022 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ScanUserListViewController : UIViewController
  11. @property (weak, nonatomic) IBOutlet UITableView *table;
  12. @property (strong, nonatomic) NSArray *user_list;
  13. @property (nonatomic , copy) void (^returnValue)(NSString* user);
  14. @end
  15. NS_ASSUME_NONNULL_END