CPDFViewController.h 415 B

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