26 lines
530 B
Objective-C
Executable File
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
|