forked from colatusso/iOSAppTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MenuTableViewController.h
28 lines (25 loc) · 989 Bytes
/
MenuTableViewController.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// MenuTableViewController.h
// Template 1
//
// Created by Rafael on 05/12/13.
// Copyright (c) 2013 Rafael Colatusso. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CustomMenuCell.h"
#import "ListViewController.h"
#import "LocationViewController.h"
#import "VideoViewController.h"
#import "AboutViewController.h"
#import "AddToDoViewController.h"
@interface MenuTableViewController : UITableViewController
@property (strong, nonatomic) NSArray *menuOptions;
@property (assign, nonatomic) CGFloat screenWidth;
@property (assign, nonatomic) CGFloat screenHeight;
@property (strong, nonatomic) ListViewController *listViewController;
@property (strong, nonatomic) LocationViewController *locationViewController;
@property (strong, nonatomic) VideoViewController *videoViewController;
@property (strong, nonatomic) AboutViewController *aboutViewController;
@property (strong, nonatomic) AddToDoViewController *addToDoViewController;
- (IBAction)showMenu:(id)sender;
@end