AddExtDocumentViewController.h 647 B

12345678910111213141516171819
  1. //
  2. // AddExtDocumentViewController.h
  3. // Granite Expo eSign
  4. //
  5. // Created by Ray on 01/03/2017.
  6. // Copyright © 2017 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface AddExtDocumentViewController : UIViewController<UIImagePickerControllerDelegate>
  10. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  11. @property (strong, nonatomic) NSMutableArray * arr_documents;
  12. @property (weak, nonatomic) IBOutlet UITextField *editDocNumber;
  13. @property (weak, nonatomic) IBOutlet UIButton *btnScan;
  14. @property (strong, nonatomic) NSString * doc_number;
  15. @property (assign, nonatomic) bool is_present;
  16. @end