27 lines
573 B
Objective-C
Executable File
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
|