CPDFBatesAddViewController.h 802 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // BatesAddViewController.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/11/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "CPDFBatesAddView.h"
  9. #import "CPDFHeaderFooterAddController.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface CPDFBatesAddViewController : UIViewController
  12. - (void)cancelClick:(UIBarButtonItem *)btn;
  13. - (id)initWithIamge:(UIImage *)image WithSize:(CGSize)size;
  14. - (void)changeLocation:(UISegmentedControl *)sender;
  15. - (void)changeAligbment:(UISegmentedControl *)sender;
  16. - (void)sliderChange:(UISlider *)slider;
  17. @property (nonatomic,strong) UIImage *image;
  18. @property (nonatomic,assign) CGSize size;
  19. @property (nonatomic,assign) Position position;
  20. @property (nonatomic,strong) CPDFBatesAddView *batesAddView;
  21. @property (nonatomic,strong) UILabel *showLabel;
  22. @end
  23. NS_ASSUME_NONNULL_END