Files
yuyin_ios/SweetParty/主类/音悦新增/酒吧厅&新人厅/YYXinrenTop3Cell.m
2025-08-08 11:05:33 +08:00

26 lines
530 B
Objective-C
Executable File

//
// YYXinrenTop3Cell.m
// SweetParty
//
// Created by bj_szd on 2022/6/8.
//
#import "YYXinrenTop3Cell.h"
@implementation YYXinrenTop3Cell
- (void)awakeFromNib {
[super awakeFromNib];
}
- (void)setModel:(YYXinrenTop3Model *)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:@"%ld", [model.price integerValue]];
}
@end