CPDFBackgroundView.h 465 B

12345678910111213141516171819202122
  1. //
  2. // CPDFBackgroundView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2023/1/2.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CPDFBackgroundView : UIView
  10. @property (nonatomic,strong) UIButton *colorBtn;
  11. @property (nonatomic,strong) UILabel *colorLabel;
  12. @property (nonatomic,strong) UIButton *selectBtn;
  13. @property (nonatomic,strong) UILabel *imageLabel;
  14. @property (nonatomic,strong) NSMutableArray *colorArray;
  15. @end
  16. NS_ASSUME_NONNULL_END