PDFTextWatermarkController.h 471 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 "PDFWatermarkTextView.h"
  9. #import "PDFWatermarkTextPreview.h"
  10. #import "PDFWatermarkViewController.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface PDFTextWatermarkController : PDFWatermarkViewController
  13. @property (nonatomic,strong) PDFWatermarkTextPreview *textPreview;
  14. @property (nonatomic,strong) PDFWatermarkTextView *textView;
  15. @end
  16. NS_ASSUME_NONNULL_END