1234567891011121314151617181920212223242526272829303132333435 |
- //
- // CPDFTextView.h
- // PDFViewer
- //
- // Created by kdan on 2022/11/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFTextView : UIView
- @property (nonatomic,strong) UIButton *colorBtn;
- @property (nonatomic,strong) UISlider *textScaleSlider;
- @property (nonatomic,strong) UISlider *opacitySlider;
- @property (nonatomic,strong) UISwitch *tileSwitch;
- @property (nonatomic,strong) UILabel *rangeLabel;
- @property (nonatomic,strong) UILabel *tileLabel;
- @property (nonatomic,strong) UILabel *textLabel;
- @property (nonatomic,strong) UILabel *opacityLabel;
- @property (nonatomic,strong) UITextField *verticalField;
- @property (nonatomic,strong) UITextField *horizontalField;
- @property (nonatomic,strong) UILabel *verticalLabel;
- @property (nonatomic,strong) UILabel *horizontalLabel;
- @property (nonatomic,strong) NSMutableArray *colorArray;
- - (void)createView;
- - (void)createFrame;
- - (void)assignData;
- @end
- NS_ASSUME_NONNULL_END
|