| 12345678910111213141516171819 |
- //
- // AddExtDocumentViewController.h
- // Granite Expo eSign
- //
- // Created by Ray on 01/03/2017.
- // Copyright © 2017 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface AddExtDocumentViewController : UIViewController<UIImagePickerControllerDelegate>
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (strong, nonatomic) NSMutableArray * arr_documents;
- @property (weak, nonatomic) IBOutlet UITextField *editDocNumber;
- @property (weak, nonatomic) IBOutlet UIButton *btnScan;
- @property (strong, nonatomic) NSString * doc_number;
- @property (assign, nonatomic) bool is_present;
- @end
|