CPDFViewController.h 306 B

1234567891011121314151617181920
  1. //
  2. // CPDFViewController.h
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CPDFViewController : UIViewController
  10. @property (nonatomic,copy) NSString *path;
  11. - (instancetype)initWithPath:(NSString *)inPath;
  12. @end
  13. NS_ASSUME_NONNULL_END