CPDFTextViewController.h 681 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // CPDFTextViewController.h
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class CPDFTextPreview;
  9. @class CPDFTextView;
  10. @class CPDFDataModel;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface CPDFTextViewController : UIViewController
  13. @property (nonatomic,strong) CPDFTextPreview *textPreview;
  14. @property (nonatomic,strong) CPDFTextView *textView;
  15. @property (nonatomic,strong) CPDFDataModel *dataModel;
  16. @property (nonatomic,strong) UIAlertController *alertController;
  17. - (void)initDataModel;
  18. - (void)addTargets;
  19. - (void)addConstraint;
  20. - (void)watermarkAdaption;
  21. - (void)createGestureRecognizer;
  22. - (void)createCustomRangeAlert;
  23. @end
  24. NS_ASSUME_NONNULL_END