31 lines
493 B
Objective-C
31 lines
493 B
Objective-C
//
|
|
// ProfileDetailViewController.m
|
|
// SlideMenu
|
|
//
|
|
// Created by Aryan Gh on 4/25/13.
|
|
// Copyright (c) 2013 Aryan Ghassemi. All rights reserved.
|
|
//
|
|
|
|
#import "ProfileDetailViewController.h"
|
|
|
|
@implementation ProfileDetailViewController
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
}
|
|
|
|
#pragma mark - SlideNavigationController Methods -
|
|
|
|
- (BOOL)slideNavigationControllerShouldDisplayLeftMenu
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
- (BOOL)slideNavigationControllerShouldDisplayRightMenu
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|