CPDFBackgroundSettingViewController.h 654 B

12345678910111213141516171819202122232425262728293031
  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 "CPDFBackgroundModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol BackgroundDataModelDelegate <NSObject>
  12. - (void)changeBackgroundModel:(CPDFBackgroundModel *)dataModel;
  13. - (void)deleteBackgroundModel;
  14. @end
  15. @interface CPDFBackgroundSettingViewController : UIViewController
  16. @property (nonatomic,strong) CPDFDocument *document;
  17. @property (nonatomic,strong) id<BackgroundDataModelDelegate> delegate;
  18. - (instancetype)initWithDocument:(CPDFDocument *)document;
  19. @end
  20. NS_ASSUME_NONNULL_END