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