12345678910111213141516171819202122 |
- //
- // CPDFBackgroundView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2023/1/2.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFBackgroundView : UIView
- @property (nonatomic,strong) UIButton *colorBtn;
- @property (nonatomic,strong) UILabel *colorLabel;
- @property (nonatomic,strong) UIButton *selectBtn;
- @property (nonatomic,strong) UILabel *imageLabel;
- @property (nonatomic,strong) NSMutableArray *colorArray;
- @end
- NS_ASSUME_NONNULL_END
|