CPDFHeadView.h 407 B

12345678910111213141516171819202122
  1. //
  2. // CPDFHeadView.h
  3. // PDFViewer
  4. //
  5. // Created by kdanmobile_2 on 2022/12/7.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "Masonry.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface CPDFHeadView : UIView
  11. @property (nonatomic,strong) UILabel *showLabel;
  12. @property (nonatomic,strong) UIImageView *imageView;
  13. @property (nonatomic,strong) UIImage *image;
  14. @property (nonatomic,assign) CGSize size;
  15. @end
  16. NS_ASSUME_NONNULL_END