Files
yuyin_ios/SweetParty/主类/狸猫新增/周星榜/LMWeekLastCollectionViewCell.m

30 lines
764 B
Mathematica
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// LMWeekLastCollectionViewCell.m
// SweetParty
//
// Created by Xmac on 2024/8/7.
//
#import "LMWeekLastCollectionViewCell.h"
@implementation LMWeekLastCollectionViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setModel:(LMLastWeekRankListModel *)model
{
_model = model;
[self.giftBaseImage sd_setImageWithURL:[NSURL URLWithString:model.base_image] placeholderImage:kDefaultUserIcon];
self.giftName.text = model.gift_name;
[self.userHeader sd_setImageWithURL:[NSURL URLWithString:model.head_pic] placeholderImage:kDefaultUserIcon];
self.userNameLabel.text = model.nick_name;
self.receiveCount.text = [NSString stringWithFormat:@"收到%@个",model.total_gift_num];
}
@end