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