CPDFTextViewController.h 654 B

1234567891011121314151617181920212223242526272829303132
  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)createGestureRecognizer;
  21. - (void)createCustomRangeAlert;
  22. @end
  23. NS_ASSUME_NONNULL_END