| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // ScanResultViewController.m
- // HMLG Scan Order
- //
- // Created by Rui Zhang on 3/8/22.
- // Copyright © 2022 United Software Applications, Inc. All rights reserved.
- //
- #import "ScanResultViewController.h"
- @interface ScanResultViewController ()
- @end
- @implementation ScanResultViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view.
- }
- - (void)viewWillDisappear:(BOOL)animated
- {
- [super viewWillDisappear:animated];
- // if(self.returnValue)
- // self.returnValue(self.handeled_val);
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|