12345678910111213141516171819202122 |
- //
- // CPDFTextViewController.h
- // PDFViewer
- //
- // Created by kdan on 2022/11/19.
- //
- #import <UIKit/UIKit.h>
- #import "PDFWatermarkTextView.h"
- #import "PDFWatermarkTextPreview.h"
- #import "PDFWatermarkViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFTextWatermarkController : PDFWatermarkViewController
- @property (nonatomic,strong) PDFWatermarkTextPreview *textPreview;
- @property (nonatomic,strong) PDFWatermarkTextView *textView;
- @end
- NS_ASSUME_NONNULL_END
|