CPDFTextViewController.h 682 B

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