25 lines
381 B
Objective-C
25 lines
381 B
Objective-C
//
|
|
// FriendsViewController.m
|
|
// SlideMenu
|
|
//
|
|
// Created by Aryan Ghassemi on 12/31/13.
|
|
// Copyright (c) 2013 Aryan Ghassemi. All rights reserved.
|
|
//
|
|
|
|
#import "FriendsViewController.h"
|
|
|
|
@implementation FriendsViewController
|
|
|
|
|
|
- (BOOL)slideNavigationControllerShouldDisplayLeftMenu
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
- (BOOL)slideNavigationControllerShouldDisplayRightMenu
|
|
{
|
|
return NO;
|
|
}
|
|
|
|
@end
|