CPDFImageView.h 941 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // CPDFImageView.h
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CPDFImageView : UIView
  10. @property (nonatomic,strong) UIButton *selectBtn;
  11. @property (nonatomic,strong) UISlider *imageScaleSlider;
  12. @property (nonatomic,strong) UISlider *opacitySlider;
  13. @property (nonatomic,strong) UISwitch *tileSwitch;
  14. @property (nonatomic,strong) UILabel *rangeLabel;
  15. @property (nonatomic,strong) UILabel *tileLabel;
  16. @property (nonatomic,strong) UILabel *sizeLabel;
  17. @property (nonatomic,strong) UILabel *opacityLabel;
  18. @property (nonatomic,strong) UITextField *verticalField;
  19. @property (nonatomic,strong) UITextField *horizontalField;
  20. @property (nonatomic,strong) UILabel *verticalLabel;
  21. @property (nonatomic,strong) UILabel *horizontalLabel;
  22. @property (nonatomic,strong) UILabel *imageLabel;
  23. - (void)createView;
  24. - (void)createFrame;
  25. - (void)assignData;
  26. @end
  27. NS_ASSUME_NONNULL_END