18 lines
437 B
Objective-C
Executable File
18 lines
437 B
Objective-C
Executable File
//
|
|
// MenuViewController.h
|
|
// SlideMenu
|
|
//
|
|
// Created by Aryan Gh on 4/24/13.
|
|
// Copyright (c) 2013 Aryan Ghassemi. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SlideNavigationController.h"
|
|
|
|
@interface LeftMenuViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
|
|
|
|
@property (nonatomic, strong) IBOutlet UITableView *tableView;
|
|
@property (nonatomic, assign) BOOL slideOutAnimationEnabled;
|
|
|
|
@end
|