CPDFTextView.h 945 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // CPDFTextView.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 CPDFTextView : UIView
  10. @property (nonatomic,strong) UIButton *colorBtn;
  11. @property (nonatomic,strong) UISlider *textScaleSlider;
  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 *textLabel;
  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) NSMutableArray *colorArray;
  23. - (void)createView;
  24. - (void)createFrame;
  25. - (void)assignData;
  26. @end
  27. NS_ASSUME_NONNULL_END