ScanResultViewController.m 917 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // ScanResultViewController.m
  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 "ScanResultViewController.h"
  9. @interface ScanResultViewController ()
  10. @end
  11. @implementation ScanResultViewController
  12. - (void)viewDidLoad {
  13. [super viewDidLoad];
  14. // Do any additional setup after loading the view.
  15. }
  16. - (void)viewWillDisappear:(BOOL)animated
  17. {
  18. [super viewWillDisappear:animated];
  19. // if(self.returnValue)
  20. // self.returnValue(self.handeled_val);
  21. }
  22. /*
  23. #pragma mark - Navigation
  24. // In a storyboard-based application, you will often want to do a little preparation before navigation
  25. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  26. // Get the new view controller using [segue destinationViewController].
  27. // Pass the selected object to the new view controller.
  28. }
  29. */
  30. @end