topicVideoCell.m 410 B

123456789101112131415161718192021
  1. //
  2. // topicVideoCell.m
  3. // YBVideo
  4. //
  5. // Created by IOS1 on 2019/7/4.
  6. // Copyright © 2019 cat. All rights reserved.
  7. //
  8. #import "topicVideoCell.h"
  9. @implementation topicVideoCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. }
  14. - (void)setModel:(NearbyVideoModel *)model{
  15. _model = model;
  16. [_thumbImgV sd_setImageWithURL:[NSURL URLWithString:_model.videoImage]];
  17. }
  18. @end