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.
41 lines
725 B
41 lines
725 B
// |
|
// StepViewController.h |
|
// watch |
|
// |
|
// Created by xTT on 2017/7/12. |
|
// Copyright © 2017年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseViewController.h" |
|
|
|
@interface StepViewController : baseViewController |
|
|
|
/** |
|
前一天按钮 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIButton *beforeDayBtn; |
|
|
|
/** |
|
后一天按钮 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIButton *afterDayBtn; |
|
/** |
|
当前天 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIButton *dayTimeBtn; |
|
|
|
/** |
|
当前天图标 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIButton *dayTimeIconBtn; |
|
|
|
/** |
|
距离 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UILabel *distanceLabel; |
|
/** |
|
热量 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UILabel *heatLabel; |
|
|
|
@end
|
|
|