1234567891011121314151617181920212223 |
- //
- // CPDFController.h
- // PDFViewer
- //
- // Created by kdan on 2022/11/14.
- //
- #import <UIKit/UIKit.h>
- @class CPDFModel;
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFListController : UIViewController
- @property (nonatomic,copy) NSString *path;
- - (instancetype)initWithModel:(CPDFModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|