PDFTextViewController.h 430 B

12345678910111213141516171819202122
  1. //
  2. // CPDFTextViewController.h
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "PDFTextView.h"
  9. #import "PDFTextPreview.h"
  10. #import "PDFWatermarkViewController.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface PDFTextViewController : PDFWatermarkViewController
  13. @property (nonatomic,strong) PDFTextPreview *textPreview;
  14. @property (nonatomic,strong) PDFTextView *textView;
  15. @end
  16. NS_ASSUME_NONNULL_END