Files
yuyin_ios/SweetParty/主类/音悦新增/拍卖厅/PMMoreAlertCell.m

28 lines
603 B
Mathematica
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// PMMoreAlertCell.m
// SweetParty
//
// Created by bj_szd on 2022/6/8.
//
#import "PMMoreAlertCell.h"
@implementation PMMoreAlertCell
- (void)awakeFromNib {
[super awakeFromNib];
}
- (void)setModel:(PMMoreModel *)model {
_model = model;
_nicknameLab.text = model.nick_name;
_valueLab.text = model.total_price;
[_avatarImgV sd_setImageWithURL:[NSURL URLWithString:model.head_pic]];
[_levelImgV sd_setImageWithURL:[NSURL URLWithString:model.contribution_level_image]];
[_charmImgV sd_setImageWithURL:[NSURL URLWithString:model.charm_level_image]];
}
@end