123456789101112131415161718192021222324 |
- //
- // HomeGoodBookCollectCell.m
- // smartRhino
- //
- // Created by niuzhen on 2020/5/20.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "HomeGoodBookCollectCell.h"
- @implementation HomeGoodBookCollectCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setData:(HomeSubItemModel *)model
- {
- self.titleL.text = model.Title;
- self.subTitleL.text = model.Summary;
- [self.imagV sd_setImageWithURL:[NSURL URLWithString:model.ImageUrls] placeholderImage:IMG(@"img_placeHolder")];
- }
- @end
|