1234567891011121314151617181920 |
- //
- // CPDFBackgroundPreview.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2023/1/2.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFBackgroundPreview : UIView
- @property (nonatomic,strong) UIImageView *documentView;
- @property (nonatomic,strong) UIImageView *imageView;
- @property (nonatomic,strong) UIColor *tintColor;
- @end
- NS_ASSUME_NONNULL_END
|