Files
yuyin_ios/SweetParty/主类/Mine/装扮&商城/SPShopMallCell.m
2025-08-08 11:05:33 +08:00

27 lines
573 B
Objective-C
Executable File

//
// SPShopMallCell.m
// romantic
//
// Created by bj_szd on 2022/7/29.
// Copyright © 2022 romantic. All rights reserved.
//
#import "SPShopMallCell.h"
@implementation SPShopMallCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setModel:(SPShopMallModel *)model {
_model = model;
[self.iconImgV sd_setImageWithURL:[NSURL URLWithString:model.base_image]];
self.nameLab.text = [NSString stringWithFormat:@"%@", model.title];
self.priceLab.text = [NSString stringWithFormat:@"%@", model.price];
}
@end