1234567891011121314151617181920 |
- //
- // CPDFPreView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2023/1/12.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PDFPreView : UIView
- @property (nonatomic,strong) UIImageView *documentImageView;
- @property (nonatomic,strong) UILabel *preLabel;
- @property (nonatomic,strong) UIImageView *preImageView;
- @end
- NS_ASSUME_NONNULL_END
|