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