1234567891011121314151617181920212223242526272829303132333435 |
- //
- // HeaderFooterAddView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/11/16.
- //
- #import <UIKit/UIKit.h>
- #import "CPDFDropDownView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFHeaderFooterAddView : UIView <UITextFieldDelegate>
- @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;
- @property (nonatomic,strong) UILabel *pageNumberLabel;
- @property (nonatomic,strong) UITextField *pageNumberText;
- //@property (nonatomic,strong) CPDFDropDownView *dropdownView;
- @property (nonatomic,strong) UILabel *fontSizeLabel;
- @property (nonatomic,strong) UITextField *fontSizeText;
- @property (nonatomic,strong) UILabel *pageIndexLabel;
- @property (nonatomic,strong) UILabel *pageIndexNumberLabel;
- @property (nonatomic,strong) UIStepper *pageIndexNumberStepper;
- - (void)stepperValueChanged:(UIStepper *)pageIndexNumberStepper;
- @end
- NS_ASSUME_NONNULL_END
|