1234567891011121314151617181920212223242526272829303132 |
- //
- // CPDFBackgroundSettingView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2023/1/2.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFBackgroundSettingView : UIView
- @property (nonatomic,strong) UILabel *titleLabel;
- @property (nonatomic,strong) UISlider *scaleSlider;
- @property (nonatomic,strong) UISlider *opacitySlider;
- @property (nonatomic,strong) UISlider *rotationSlider;
- @property (nonatomic,strong) UILabel *rotationlabel;
- @property (nonatomic,strong) UILabel *textLabel;
- @property (nonatomic,strong) UILabel *opacityLabel;
- @property (nonatomic,strong) UILabel *rangeLabel;
- @property (nonatomic,strong) UITextField *verticalField;
- @property (nonatomic,strong) UITextField *horizontalField;
- @property (nonatomic,strong) UILabel *verticalLabel;
- @property (nonatomic,strong) UILabel *horizontalLabel;
- @property (nonatomic,strong) UIButton *pageBtn;
- @property (nonatomic,strong) UIButton *doneBtn;
- @property (nonatomic,strong) UIButton *cancelBtn;
- @end
- NS_ASSUME_NONNULL_END
|