123456789101112131415161718192021222324 |
- //
- // CPDFAddView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/12/5.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFAddView : UIView
- @property (nonatomic,strong) UILabel *localLabel;
- @property (nonatomic,strong) UISegmentedControl *localSegment;
- @property (nonatomic,strong) UILabel *alignmentLabel;
- @property (nonatomic,strong) UISegmentedControl *aligbmentSegment;
- @property (nonatomic,strong) UILabel *colorLabel;
- @property (nonatomic,strong) UIImageView *colerImage;
- @property (nonatomic,strong) UISlider *colorSlider;
- @end
- NS_ASSUME_NONNULL_END
|