// // CommodityListTableViewCell.m // Lighting // // Created by 曹云霄 on 16/5/4. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "CommodityListTableViewCell.h" @implementation CommodityListTableViewCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } #pragma mark 赋值 - (void)setModel:(ShopcarModel *)model { _model = model; [self.goodsHeader sd_setImageWithURL:[NSURL URLWithString:_model.goods.pictures] placeholderImage:ReplaceImage]; self.goodsName.text = _model.goods.name; self.goodsNumber.text = _model.goods.number; self.clinchPrice.text = [_model.goods.costPrice stringValue]; //计算总价格 NSInteger number = [_model.goods.number integerValue]; NSInteger price = [_model.goods.costPrice integerValue]; NSInteger allPrice = number*price; self.totalPrice.text = [NSString stringWithFormat:@"%ld",allPrice]; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end