| 1234567891011121314151617181920 |
- //
- // ScanUserListViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 2/22/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanUserListViewController : UIViewController
- @property (weak, nonatomic) IBOutlet UITableView *table;
- @property (strong, nonatomic) NSArray *user_list;
- @property (nonatomic , copy) void (^returnValue)(NSString* user);
- @end
- NS_ASSUME_NONNULL_END
|