Files
featherVoice/QXLive/Mine(音域)/View/我的背包/QXBackpackRecordCell.m

25 lines
646 B
Mathematica
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// 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]];
2025-10-20 09:43:10 +08:00
// self.recordLabel.text = [NSString stringWithFormat:@"X%@%@",model.gift_num,model.gift_name];
self.recordLabel.text = [NSString stringWithFormat:@"%@",model.gift_name];
2025-08-08 10:49:36 +08:00
}
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
@end