HomeHotVideoCell.m 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // HomeHotVideoCell.m
  3. // KulexiuForStudent
  4. //
  5. // Created by 王智 on 2022/8/29.
  6. //
  7. #import "HomeHotVideoCell.h"
  8. @interface HomeHotVideoCell ()
  9. @property (weak, nonatomic) IBOutlet UIImageView *coverImage;
  10. @property (weak, nonatomic) IBOutlet UILabel *courseName;
  11. @property (weak, nonatomic) IBOutlet UILabel *teacherName;
  12. @property (weak, nonatomic) IBOutlet UIImageView *teacherAvatar;
  13. @property (weak, nonatomic) IBOutlet UILabel *countLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *subjectLabel;
  15. @end
  16. @implementation HomeHotVideoCell
  17. - (void)awakeFromNib {
  18. [super awakeFromNib];
  19. // Initialization code
  20. }
  21. - (void)configWithSource:(HomeVideoGroupModel *)source {
  22. [self.coverImage sd_setImageWithURL:[NSURL URLWithString:[source.lessonCoverUrl getUrlEndcodeString]] placeholderImage:[UIImage imageNamed:@"video_placeholder"]];
  23. self.courseName.text = [NSString returnNoNullStringWithString:source.videoGroupName];
  24. if ([NSString isEmptyString:source.teacherName]) {
  25. self.teacherName.text = [NSString stringWithFormat:@"游客%@",source.teacherId];
  26. }
  27. else {
  28. self.teacherName.text = [NSString stringWithFormat:@"%@",source.teacherName];
  29. }
  30. [self.teacherAvatar sd_setImageWithURL:[NSURL URLWithString:[source.avatar getUrlEndcodeString]] placeholderImage:[UIImage imageNamed:TEACHER_AVATAR]];
  31. self.countLabel.text = [NSString stringWithFormat:@"%zd人学习",source.buyCount];
  32. self.subjectLabel.text = [NSString returnNoNullStringWithString:source.subjectName];
  33. }
  34. @end