CPDFBatesAddViewController.h 943 B

123456789101112131415161718192021222324252627282930313233
  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. #import "CPDFBatesModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface CPDFBatesAddViewController : UIViewController
  13. - (void)cancelClick:(UIBarButtonItem *)btn;
  14. - (id)initWithIamge:(UIImage *)image WithSize:(CGSize)size;
  15. - (void)changeLocation:(UISegmentedControl *)sender;
  16. - (void)changeAligbment:(UISegmentedControl *)sender;
  17. - (void)sliderChange:(UISlider *)slider;
  18. @property (nonatomic,strong) UIImage *image;
  19. @property (nonatomic,assign) CGSize size;
  20. @property (nonatomic,assign) Position position;
  21. @property (nonatomic,strong) CPDFBatesAddView *batesAddView;
  22. @property (nonatomic,strong) UILabel *showLabel;
  23. @property (nonatomic,strong) UIImageView *imageView;
  24. @property (nonatomic,strong) CPDFBatesModel *modelBatesData;
  25. @end
  26. NS_ASSUME_NONNULL_END