Blame view

LifeLog/LifeLog/RankingViewController.h 583 Bytes
77358f2e0   phong   add project lifelog
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>
7f9c2f9ce   nvtu11790@gmail.com   Add ranking UI
10
  #import "CollectionView.h"
77358f2e0   phong   add project lifelog
11
  @interface RankingViewController : UIViewController
7f9c2f9ce   nvtu11790@gmail.com   Add ranking UI
12
13
14
15
16
17
18
  @property (weak, nonatomic) IBOutlet CollectionView *viewCollectionTime;
  @property (weak, nonatomic) IBOutlet CollectionView *viewCollectionMode;
  @property (weak, nonatomic) IBOutlet CollectionView *viewCollectionType;
  
  @property (weak, nonatomic) IBOutlet UITableView *tableRank;
  
  - (IBAction)clickButton:(UIButton *)sender;
77358f2e0   phong   add project lifelog
19
  @end