12345678910111213141516171819202122232425262728293031323334 |
- #import <UIKit/UIKit.h>
- #import "CPDFDropDownView.h"
- NS_ASSUME_NONNULL_BEGIN
- #define kNumber @"^[0-9]+$";
- @interface CPDFHeaderFooterAddView : UIView <UITextFieldDelegate>
- @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
|