28 lines
603 B
Mathematica
28 lines
603 B
Mathematica
|
|
//
|
||
|
|
// 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
|