CPDFListController.h 323 B

1234567891011121314151617181920212223
  1. //
  2. // CPDFController.h
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/14.
  6. //
  7. #import <UIKit/UIKit.h>
  8. @class CPDFModel;
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CPDFListController : UIViewController
  11. @property (nonatomic,copy) NSString *path;
  12. - (instancetype)initWithModel:(CPDFModel *)model;
  13. @end
  14. NS_ASSUME_NONNULL_END