123456789101112131415161718192021222324252627 |
- //
- // HeaderFooterAddView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/11/16.
- //
- #import <UIKit/UIKit.h>
- #import "PDFAddView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFHeaderFooterAddView : PDFAddView <UITextFieldDelegate>
- @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
|