| 123456789101112131415161718192021222324252627 |
- //
- // DocumentPageViewController.h
- // AntsContract
- //
- // Created by Ray on 12/16/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface DocumentPageViewController : UIViewController <UIPageViewControllerDelegate , UIPageViewControllerDataSource>
- @property (strong, nonatomic) UIPageViewController *pageViewController;
- @property (strong, nonatomic) NSMutableDictionary * controlTemplate;
- @property size_t total_page;
- @property CGPDFDocumentRef document;
- @property (strong, nonatomic) NSMutableDictionary* signatureData;
- @property (strong, nonatomic) NSString* pdfName;
- @property (strong, nonatomic) NSString* templateName;
- @property (strong, nonatomic) NSString* docment_id;
- @property long current_page;
- @property (nonatomic , copy) void (^OnSave)(NSString * file, NSString* subject );
- @end
|