123456789101112131415161718192021222324252627 |
- //
- // BatesAddView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/11/18.
- //
- #import <UIKit/UIKit.h>
- #import "PDFAddView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFBatesAddView : PDFAddView <UITextFieldDelegate>
- @property (nonatomic,strong) UILabel *pageNumberLabel;
- @property (nonatomic,strong) UITextField *pageNumberText;
- @property (nonatomic,strong) UILabel *fontNameLabel;
- @property (nonatomic,strong) UITextField *fontNameText;
- @property (nonatomic,strong) UILabel *pageIndexLabel;
- @property (nonatomic,strong) UITextField *pageIndexNumberText;
- @property (nonatomic,strong) UIStepper *pageIndexNumberStepper;
- - (void)setText;
- @end
- NS_ASSUME_NONNULL_END
|