123456789101112131415161718192021222324252627282930 |
- //
- // CPDFBackgroundSettingViewController.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2023/1/2.
- //
- #import <UIKit/UIKit.h>
- #import <ComPDFKit/ComPDFKit.h>
- #import "PDFBackgroundModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol BackgroundDataModelDelegate <NSObject>
- - (void)PDFViewPerformChangeBackground:(PDFBackgroundModel *)dataModel;
- - (void)PDFViewPerformDeleteBackground;
- @end
- @interface PDFBackgroundSettingViewController : UIViewController
- @property (nonatomic,weak) id<BackgroundDataModelDelegate> delegate;
- - (instancetype)initWithDocument:(CPDFDocument *)document;
- @end
- NS_ASSUME_NONNULL_END
|