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.
35 lines
753 B
35 lines
753 B
// |
|
// NewStepChartCell.h |
|
// tongxin |
|
// |
|
// Created by Apple on 2020/4/10. |
|
// Copyright © 2020 xTT. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
#import <UIKit/UIKit.h> |
|
|
|
@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
|
|
|