1234567891011121314151617181920212223242526 |
- //
- // BatesSettingViewController.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/11/17.
- //
- #import <UIKit/UIKit.h>
- #import "CPDFBatesModel.h"
- #import "CPDFBatesDeleteViewController.h"
- #import "CPDFBatesAddViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFBatesSettingController : UIViewController
- @property (nonatomic,strong) UIImage *image;
- @property (nonatomic,assign) CGSize size;
- @property (nonatomic,strong) CPDFBatesModel *modelBatesData;
- @property (nonatomic,strong) CPDFBatesAddViewController *batesAddControl;
- - (id)initWithIamge:(UIImage *)image WithSize:(CGSize)size;
- @end
- NS_ASSUME_NONNULL_END
|