Files
yuyin_ios/SweetParty/主类/音悦新增/仲夏夜梦曲/ZXYRankCell.m

27 lines
577 B
Mathematica
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// ZXYRankCell.m
// romantic
//
// Created by bj_szd on 2023/7/19.
// Copyright © 2023 romantic. All rights reserved.
//
#import "ZXYRankCell.h"
@implementation ZXYRankCell
- (void)awakeFromNib {
[super awakeFromNib];
}
- (void)setModel:(DDCaiAllRecordModel *)model {
_model = model;
[self.avatarImgV sd_setImageWithURL:[NSURL URLWithString:model.head_pic] placeholderImage:kDefaultUserIcon];
self.nicknameLab.text = model.nick_name;
self.valueLab.text = [NSString stringWithFormat:@"获得总价值:%@", model.win_total_price];
}
@end