// // BillListTableViewCell.m // Car // // Created by Javen on 2016/12/27. // Copyright © 2016年 上海勾芒信息科技. All rights reserved. // #import "BillListTableViewCell.h" @implementation BillListTableViewCell - (void)awakeFromNib { [super awakeFromNib]; // Initialization code } - (void)configWithArray:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath { StationUserAcctHisEntity *model = array[indexPath.section][indexPath.row]; self.labelDate.text = model.createDate; self.labelReduct.text = [CalculateHelper moneyStringWithPrefix:model.occur]; } - (void)setSelected:(BOOL)selected animated:(BOOL)animated { [super setSelected:selected animated:animated]; // Configure the view for the selected state } @end