123456789101112131415161718192021222324252627282930 |
- //
- // BatesAddViewController.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/11/18.
- //
- #import <UIKit/UIKit.h>
- #import "CPDFBatesAddView.h"
- #import "CPDFHeaderFooterAddController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFBatesAddViewController : UIViewController
- - (void)cancelClick:(UIBarButtonItem *)btn;
- - (id)initWithIamge:(UIImage *)image WithSize:(CGSize)size;
- - (void)changeLocation:(UISegmentedControl *)sender;
- - (void)changeAligbment:(UISegmentedControl *)sender;
- - (void)sliderChange:(UISlider *)slider;
- @property (nonatomic,strong) UIImage *image;
- @property (nonatomic,assign) CGSize size;
- @property (nonatomic,assign) Position position;
- @property (nonatomic,strong) CPDFBatesAddView *batesAddView;
- @property (nonatomic,strong) UILabel *showLabel;
- @end
- NS_ASSUME_NONNULL_END
|