DocumentPageViewController.h 817 B

123456789101112131415161718192021222324252627
  1. //
  2. // DocumentPageViewController.h
  3. // AntsContract
  4. //
  5. // Created by Ray on 12/16/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DocumentPageViewController : UIViewController <UIPageViewControllerDelegate , UIPageViewControllerDataSource>
  10. @property (strong, nonatomic) UIPageViewController *pageViewController;
  11. @property (strong, nonatomic) NSMutableDictionary * controlTemplate;
  12. @property size_t total_page;
  13. @property CGPDFDocumentRef document;
  14. @property (strong, nonatomic) NSMutableDictionary* signatureData;
  15. @property (strong, nonatomic) NSString* pdfName;
  16. @property (strong, nonatomic) NSString* templateName;
  17. @property (strong, nonatomic) NSString* docment_id;
  18. @property (nonatomic , copy) void (^OnSave)(NSString * file);
  19. @end