CPDFHeaderFooterAddView.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // HeaderFooterAddView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/11/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "CPDFDropDownView.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. #define kNumber @"^[0-9]+$";
  11. @interface CPDFHeaderFooterAddView : UIView <UITextFieldDelegate>
  12. @property (nonatomic,strong) UILabel *localLabel;
  13. @property (nonatomic,strong) UISegmentedControl *localSegment;
  14. @property (nonatomic,strong) UILabel *alignmentLabel;
  15. @property (nonatomic,strong) UISegmentedControl *aligbmentSegment;
  16. @property (nonatomic,strong) UILabel *colorLabel;
  17. @property (nonatomic,strong) UIImageView *colerImage;
  18. @property (nonatomic,strong) UISlider *colorSlider;
  19. @property (nonatomic,strong) UILabel *pageNumberLabel;
  20. @property (nonatomic,strong) UITextField *pageNumberText;
  21. @property (nonatomic,strong) UILabel *fontSizeLabel;
  22. @property (nonatomic,strong) UITextField *fontSizeText;
  23. @property (nonatomic,strong) UILabel *pageIndexLabel;
  24. @property (nonatomic,strong) UITextField *pageIndexNumberText;
  25. @property (nonatomic,strong) UIStepper *pageIndexNumberStepper;
  26. @end
  27. NS_ASSUME_NONNULL_END