ScanResultViewController.h 473 B

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