CPDFTextViewController.h 478 B

123456789101112131415161718192021222324252627
  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. - (void)addTargets;
  17. @end
  18. NS_ASSUME_NONNULL_END