// // HeaderFooterAddView.h // PDFViewer // // Created by kdanmobile_2 on 2022/11/16. // #import NS_ASSUME_NONNULL_BEGIN #define kNumber @"^[0-9]+$"; @interface CPDFHeaderFooterAddView : UIView @property (nonatomic,strong) UILabel *localLabel; @property (nonatomic,strong) UISegmentedControl *localSegment; @property (nonatomic,strong) UILabel *alignmentLabel; @property (nonatomic,strong) UISegmentedControl *aligbmentSegment; @property (nonatomic,strong) UILabel *colorLabel; @property (nonatomic,strong) UIImageView *colerImage; @property (nonatomic,strong) UISlider *colorSlider; @property (nonatomic,strong) UILabel *pageNumberLabel; @property (nonatomic,strong) UITextField *pageNumberText; @property (nonatomic,strong) UILabel *fontSizeLabel; @property (nonatomic,strong) UITextField *fontSizeText; @property (nonatomic,strong) UILabel *pageIndexLabel; @property (nonatomic,strong) UITextField *pageIndexNumberText; @property (nonatomic,strong) UIStepper *pageIndexNumberStepper; @end NS_ASSUME_NONNULL_END