// // NewStepChartCell.h // tongxin // // Created by Apple on 2020/4/10. // Copyright © 2020 xTT. All rights reserved. // #import "TableCell.h" #import "Step.h" #import "ZHLineChartView.h" NS_ASSUME_NONNULL_BEGIN @interface NewStepChartCell : baseCell /// 今日步数 数值Lable @property (weak, nonatomic) UILabel *todayLable; /// 统计图 @property (weak, nonatomic) IBOutlet UIView *lineChartContentView; /// 设置计步数组 绘制统计图 -(void)setStepDataList:(NSArray *)dataList WithTodayData:(int)todayData; @end NS_ASSUME_NONNULL_END