PDFBackgroundSettingViewController.h 614 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // CPDFBackgroundSettingViewController.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2023/1/2.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import <ComPDFKit/ComPDFKit.h>
  9. #import "PDFBackgroundModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol BackgroundDataModelDelegate <NSObject>
  12. - (void)PDFViewPerformChangeBackground:(PDFBackgroundModel *)dataModel;
  13. - (void)PDFViewPerformDeleteBackground;
  14. @end
  15. @interface PDFBackgroundSettingViewController : UIViewController
  16. @property (nonatomic,weak) id<BackgroundDataModelDelegate> delegate;
  17. - (instancetype)initWithDocument:(CPDFDocument *)document;
  18. @end
  19. NS_ASSUME_NONNULL_END