BogoSearchHistoryCell.m 647 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BogoSearchHistoryCell.m
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/4/6.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BogoSearchHistoryCell.h"
  9. @implementation BogoSearchHistoryCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. self.headImgView.layer.cornerRadius = self.imgWidthConstraint.constant / 2;
  14. self.headImgView.layer.masksToBounds = YES;
  15. }
  16. - (void)setModel:(LivingModel *)model{
  17. [self.headImgView sd_setImageWithURL:[NSURL URLWithString:model.head_image] completed:nil];
  18. self.nickNameL.text = model.nick_name;
  19. self.idLabel.text = model.id;
  20. }
  21. @end