123456789101112131415161718192021 |
- //
- // LDContainerImageCell.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/28.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "LDShareImageCellModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface LDContainerImageCell : UICollectionViewCell
- @property (nonatomic, strong) LDShareImageCellModel *model;
- @property (nonatomic, strong) UILabel *qrImgLabel;
- @property (nonatomic, copy) void (^selectBlock)(void);
- @end
- NS_ASSUME_NONNULL_END
|