PDFAddView.h 585 B

123456789101112131415161718192021222324
  1. //
  2. // CPDFAddView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/12/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface PDFAddView : UIView
  10. @property (nonatomic,strong) UILabel *localLabel;
  11. @property (nonatomic,strong) UISegmentedControl *localSegment;
  12. @property (nonatomic,strong) UILabel *alignmentLabel;
  13. @property (nonatomic,strong) UISegmentedControl *aligbmentSegment;
  14. @property (nonatomic,strong) UILabel *colorLabel;
  15. @property (nonatomic,strong) UIImageView *colerImage;
  16. @property (nonatomic,strong) UISlider *colorSlider;
  17. @end
  18. NS_ASSUME_NONNULL_END