PDFHeaderFooterAddView.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // HeaderFooterAddView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/11/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "PDFAddView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PDFHeaderFooterAddView : UIView <UITextFieldDelegate>
  11. @property (retain, nonatomic) IBOutlet UILabel *localLabel;
  12. @property (retain, nonatomic) IBOutlet UISegmentedControl *localSegment;
  13. @property (retain, nonatomic) IBOutlet UILabel *alignmentLabel;
  14. @property (retain, nonatomic) IBOutlet UISegmentedControl *aligbmentSegment;
  15. @property (retain, nonatomic) IBOutlet UILabel *colorLabel;
  16. @property (retain, nonatomic) IBOutlet UIImageView *colerImage;
  17. @property (retain, nonatomic) IBOutlet UISlider *colorSlider;
  18. @property (retain, nonatomic) IBOutlet UILabel *pageNumberLabel;
  19. @property (retain, nonatomic) IBOutlet UITextField *pageNumberText;
  20. @property (retain, nonatomic) IBOutlet UILabel *fontSizeLabel;
  21. @property (retain, nonatomic) IBOutlet UITextField *fontSizeText;
  22. @property (retain, nonatomic) IBOutlet UILabel *pageIndexLabel;
  23. @property (retain, nonatomic) IBOutlet UITextField *pageIndexNumberText;
  24. //@property (nonatomic,strong) UILabel *pageNumberLabel;
  25. //@property (nonatomic,strong) UITextField *pageNumberText;
  26. //@property (nonatomic,strong) UILabel *fontSizeLabel;
  27. //@property (nonatomic,strong) UITextField *fontSizeText;
  28. //@property (nonatomic,strong) UILabel *pageIndexLabel;
  29. //@property (nonatomic,strong) UITextField *pageIndexNumberText;
  30. //@property (nonatomic,strong) UIStepper *pageIndexNumberStepper;
  31. //- (void)setText;
  32. @end
  33. NS_ASSUME_NONNULL_END