12345678910111213141516171819202122 |
- #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
|