RankingViewController.h 583 Bytes
//
//  RankingViewController.h
//  LifeLog
//
//  Created by Nguyen Van Phong on 7/25/17.
//  Copyright © 2017 PhongNV. All rights reserved.
//

#import <UIKit/UIKit.h>

#import "CollectionView.h"

@interface RankingViewController : UIViewController

@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;
@end