HomeGoodBookCollectCell.m 544 B

123456789101112131415161718192021222324
  1. //
  2. // HomeGoodBookCollectCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/20.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeGoodBookCollectCell.h"
  9. @implementation HomeGoodBookCollectCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setData:(HomeSubItemModel *)model
  15. {
  16. self.titleL.text = model.Title;
  17. self.subTitleL.text = model.Summary;
  18. [self.imagV sd_setImageWithURL:[NSURL URLWithString:model.ImageUrls] placeholderImage:IMG(@"img_placeHolder")];
  19. }
  20. @end