HomeProblemTopCollectCell.m 470 B

12345678910111213141516171819202122
  1. //
  2. // HomeProblemTopCollectCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/19.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "HomeProblemTopCollectCell.h"
  9. @implementation HomeProblemTopCollectCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setImageViewWithString:(NSString *)imageStr
  15. {
  16. [self.imagV sd_setImageWithURL:[NSURL URLWithString:imageStr] placeholderImage:kPlaceHolderImage];
  17. }
  18. @end