PageViewController.h 801 B

12345678910111213141516171819202122232425262728
  1. //
  2. // DocumentViewController.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. #import "PDFPageView.h"
  10. #import "PDFScrollView.h"
  11. #import "EditControlView.h"
  12. #import "TouchImageView.h"
  13. @interface PageViewController : UIViewController<UITextViewDelegate,TouchImageViewDelegate>
  14. @property (strong, nonatomic) IBOutlet PDFPageView *pdfPageView;
  15. @property (strong, nonatomic) IBOutlet EditControlView *editControlView;
  16. @property size_t pageIndex;
  17. @property CGPDFPageRef pageRef;
  18. @property (strong, nonatomic) IBOutlet PDFScrollView *pdfScrollView;
  19. @property (strong, nonatomic) NSMutableDictionary * controlTemplate;
  20. @property (strong, nonatomic) NSMutableDictionary * signatureData;
  21. @end