| 1234567891011121314151617181920212223 |
- //
- // MOActiveImageCell.m
- // MiMoLive
- //
- // Created by SuperC on 2025/2/21.
- //
- #import "MOActiveImageCell.h"
- @implementation MOActiveImageCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setCellModel:(MODialogsData *)cellModel{
- _cellModel = cellModel;
-
- [self.iconImgView sd_setImageWithURL:[NSURL URLWithString:cellModel.jumpList.img]];
- }
- @end
|