| 1234567891011121314151617181920 |
- //
- // ScanResultViewController.h
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 3/8/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ScanResultViewController : UIViewController
- @property (strong, nonatomic) id scan_val;
- @property (strong, nonatomic) NSString *handeled_val;
- @property (nonatomic,copy) void(^returnValue)(id val);
- @end
- NS_ASSUME_NONNULL_END
|