CPDFHeaderFooterAddView.h 1.0 KB

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