12345678910111213141516171819202122 |
- //
- // CPDFHeadView.h
- // PDFViewer
- //
- // Created by kdanmobile_2 on 2022/12/7.
- //
- #import <UIKit/UIKit.h>
- #import "Masonry.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CPDFHeadView : UIView
- @property (nonatomic,strong) UILabel *showLabel;
- @property (nonatomic,strong) UIImageView *imageView;
- @property (nonatomic,strong) UIImage *image;
- @property (nonatomic,assign) CGSize size;
- @end
- NS_ASSUME_NONNULL_END
|