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.
36 lines
679 B
36 lines
679 B
// |
|
// NewTrackVC.h |
|
// tongxin |
|
// |
|
// Created by weichao on 2019/8/23. |
|
// Copyright © 2019 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseViewController.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface NewTrackVC : baseViewController |
|
|
|
/** |
|
后一天 |
|
*/ |
|
@property (weak, nonatomic) IBOutlet UIButton *afterDayBtn; |
|
/** |
|
前一天 |
|
*/ |
|
@property (weak, nonatomic) IBOutlet UIButton *beforeDayBtn; |
|
/** |
|
时间显示Btn |
|
*/ |
|
@property (weak, nonatomic) IBOutlet UIButton *dayTimeBtn; |
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *dayTimeIconBtn; |
|
|
|
@property (strong, nonatomic) UIScrollView *collectionView; |
|
|
|
@property (nonatomic ,strong) IBOutlet UIView *topView; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|