12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // HeaderFooterAddView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/11/16.
- //
- #import <UIKit/UIKit.h>
- #import "PDFAddView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFHeaderFooterAddView : UIView <UITextFieldDelegate>
- @property (retain, nonatomic) IBOutlet UILabel *localLabel;
- @property (retain, nonatomic) IBOutlet UISegmentedControl *localSegment;
- @property (retain, nonatomic) IBOutlet UILabel *alignmentLabel;
- @property (retain, nonatomic) IBOutlet UISegmentedControl *aligbmentSegment;
- @property (retain, nonatomic) IBOutlet UILabel *colorLabel;
- @property (retain, nonatomic) IBOutlet UIImageView *colerImage;
- @property (retain, nonatomic) IBOutlet UISlider *colorSlider;
- @property (retain, nonatomic) IBOutlet UILabel *pageNumberLabel;
- @property (retain, nonatomic) IBOutlet UITextField *pageNumberText;
- @property (retain, nonatomic) IBOutlet UILabel *fontSizeLabel;
- @property (retain, nonatomic) IBOutlet UITextField *fontSizeText;
- @property (retain, nonatomic) IBOutlet UILabel *pageIndexLabel;
- @property (retain, nonatomic) IBOutlet UITextField *pageIndexNumberText;
- //@property (nonatomic,strong) UILabel *pageNumberLabel;
- //@property (nonatomic,strong) UITextField *pageNumberText;
- //@property (nonatomic,strong) UILabel *fontSizeLabel;
- //@property (nonatomic,strong) UITextField *fontSizeText;
- //@property (nonatomic,strong) UILabel *pageIndexLabel;
- //@property (nonatomic,strong) UITextField *pageIndexNumberText;
- //@property (nonatomic,strong) UIStepper *pageIndexNumberStepper;
- //- (void)setText;
- @end
- NS_ASSUME_NONNULL_END
|