12345678910111213141516171819202122 |
- //
- // HomeGoodBookCollectCell.h
- // smartRhino
- //
- // Created by niuzhen on 2020/5/20.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeSubItemModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface HomeGoodBookCollectCell : UICollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *imagV;
- @property (weak, nonatomic) IBOutlet UILabel *titleL;
- @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
- - (void)setData:(HomeSubItemModel *)model;
- @end
- NS_ASSUME_NONNULL_END
|