// // CPDFTextView.h // PDFViewer // // Created by kdan on 2022/11/16. // #import 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