iOS-Slide-Menu/SlideMenu/Helper Classes/ProfileViewController.m

31 lines
476 B
Objective-C
Executable File

//
// ProfileViewController.m
// SlideMenu
//
// Created by Aryan Gh on 4/24/13.
// Copyright (c) 2013 Aryan Ghassemi. All rights reserved.
//
#import "ProfileViewController.h"
@implementation ProfileViewController
- (void)viewDidLoad
{
[super viewDidLoad];
}
#pragma mark - SlideNavigationController Methods -
- (BOOL)slideNavigationControllerShouldDisplayLeftMenu
{
return YES;
}
- (BOOL)slideNavigationControllerShouldDisplayRightMenu
{
return YES;
}
@end