PDFBatesAddView.h 672 B

123456789101112131415161718192021222324252627
  1. //
  2. // BatesAddView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/11/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "PDFAddView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PDFBatesAddView : PDFAddView <UITextFieldDelegate>
  11. @property (nonatomic,strong) UILabel *pageNumberLabel;
  12. @property (nonatomic,strong) UITextField *pageNumberText;
  13. @property (nonatomic,strong) UILabel *fontNameLabel;
  14. @property (nonatomic,strong) UITextField *fontNameText;
  15. @property (nonatomic,strong) UILabel *pageIndexLabel;
  16. @property (nonatomic,strong) UITextField *pageIndexNumberText;
  17. @property (nonatomic,strong) UIStepper *pageIndexNumberStepper;
  18. - (void)setText;
  19. @end
  20. NS_ASSUME_NONNULL_END