MOActiveImageCell.m 406 B

1234567891011121314151617181920212223
  1. //
  2. // MOActiveImageCell.m
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2025/2/21.
  6. //
  7. #import "MOActiveImageCell.h"
  8. @implementation MOActiveImageCell
  9. - (void)awakeFromNib {
  10. [super awakeFromNib];
  11. // Initialization code
  12. }
  13. - (void)setCellModel:(MODialogsData *)cellModel{
  14. _cellModel = cellModel;
  15. [self.iconImgView sd_setImageWithURL:[NSURL URLWithString:cellModel.jumpList.img]];
  16. }
  17. @end