1234567891011121314151617181920 |
- //
- // CPDFViewController.h
- // PDFViewer
- //
- // Created by kdan on 2022/11/15.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFViewController : UIViewController
- @property (nonatomic,copy) NSString *path;
- - (instancetype)initWithPath:(NSString *)inPath;
- @end
- NS_ASSUME_NONNULL_END
|