Blame view
LifeLog/LifeLog/RankingViewController.h
752 Bytes
77358f2e0
|
1 2 3 4 5 6 7 8 9 |
// // RankingViewController.h // LifeLog // // Created by Nguyen Van Phong on 7/25/17. // Copyright © 2017 PhongNV. All rights reserved. // #import <UIKit/UIKit.h> |
e796f8345
|
10 |
#import "BaseTableViewController.h" |
7f9c2f9ce
|
11 |
#import "CollectionView.h" |
e796f8345
|
12 13 14 15 |
@interface RankingViewController : BaseTableViewController { NSDate * _startDate; NSDate * _endDate; } |
77358f2e0
|
16 |
|
7f9c2f9ce
|
17 18 19 |
@property (weak, nonatomic) IBOutlet CollectionView *viewCollectionTime; @property (weak, nonatomic) IBOutlet CollectionView *viewCollectionMode; @property (weak, nonatomic) IBOutlet CollectionView *viewCollectionType; |
e796f8345
|
20 |
@property (weak, nonatomic) IBOutlet UILabel *lblDateTime; |
7f9c2f9ce
|
21 |
|
02fd57747
|
22 23 |
- (IBAction)clickBackward:(UIButton *)sender; - (IBAction)clickForward:(UIButton *)sender; |
77358f2e0
|
24 |
@end |