增加换肤功能
This commit is contained in:
23
QXLive/Mine(音域)/View/我的背包/QXBackpackRecordCell.m
Normal file
23
QXLive/Mine(音域)/View/我的背包/QXBackpackRecordCell.m
Normal file
@@ -0,0 +1,23 @@
|
||||
//
|
||||
// QXBackpackRecordCell.m
|
||||
// QXLive
|
||||
//
|
||||
// Created by 启星 on 2025/5/16.
|
||||
//
|
||||
|
||||
#import "QXBackpackRecordCell.h"
|
||||
|
||||
@implementation QXBackpackRecordCell
|
||||
-(void)setModel:(QXBagRecordModel *)model{
|
||||
_model = model;
|
||||
self.titleLabel.text = model.remarks;
|
||||
self.timeLabel.text = model.time;
|
||||
[self.giftImageView sd_setImageWithURL:[NSURL URLWithString:model.gift_image]];
|
||||
self.recordLabel.text = [NSString stringWithFormat:@"X%@%@",model.gift_num,model.gift_name];
|
||||
}
|
||||
- (void)awakeFromNib {
|
||||
[super awakeFromNib];
|
||||
// Initialization code
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user