| 12345678910111213141516171819202122 |
- //
- // 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<UINavigationControllerDelegate, 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;
- -(void) refresh_table;
- @property (nonatomic , copy) void (^uploadSuccess)(NSMutableArray * arr_documents);
- //@property (assign, nonatomic) bool close
- @end
|