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