You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
571 B
28 lines
571 B
// |
|
// 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<Step *> *)dataList WithTodayData:(int)todayData; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|