123456789101112131415161718192021222324 |
- //
- // 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;
- @property (nonatomic,strong) UISegmentedControl *segmentedControl;
- - (instancetype)initWithPath:(NSString *)inPath;
- - (void)createView;
- - (void)createFrame;
- @end
- NS_ASSUME_NONNULL_END
|