123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // CPDFBackgroundSettingView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2023/1/2.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFBackgroundSettingView : UIView
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UISlider *scaleSlider;
- @property (weak, nonatomic) IBOutlet UISlider *opacitySlider;
- @property (weak, nonatomic) IBOutlet UISlider *rotationSlider;
- @property (weak, nonatomic) IBOutlet UIButton *pageBtn;
- @property (weak, nonatomic) IBOutlet UILabel *rangeLabel;
- @property (weak, nonatomic) IBOutlet UITextField *horizontalField;
- @property (weak, nonatomic) IBOutlet UITextField *verticalField;
- @property (weak, nonatomic) IBOutlet UIButton *doneBtn;
- @property (weak, nonatomic) IBOutlet UIButton *cancelBtn;
- //@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
|