1234567891011121314151617181920 |
- //
- // KBScrollChildCollectionViewCell.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/17.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBCollectionViewCell.h"
- #import "KBChildGoodModel.h"
- @interface KBScrollChildCollectionViewCell : KBCollectionViewCell
- @property (nonatomic, strong) KBChildGoodModel *model;
- @property (nonatomic, strong) CALayer *pictureLayer;
- @property (nonatomic, strong) UILabel *topLabel;
- @property (nonatomic, strong) UILabel *middleLabel;
- @property (nonatomic, strong) UILabel *bottomLabel;
- @property (nonatomic, strong) UILabel *priceLabel;
- @end
|