Files
2025-08-08 11:05:33 +08:00

28 lines
603 B
Objective-C
Executable File

//
// 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