how to go back in MFsidemenu?

77 views Asked by At

i want to back on MFSlidemenu there is no functionality to go back in MFSlidemenu

i have tried this but result:

[self.navigationController popToViewController:Viewcontroller animated:YES];

and this

 NSUInteger ownIndex = [self.navigationController.viewControllers indexOfObject:self];
[self.navigationController popToViewController:        
[self.navigationController.viewControllers objectAtIndex:ownIndex - 2] animated:YES]; 
1

There are 1 answers

5
seggy On BEST ANSWER

please check this link

HomeView *Home = [[HomeView alloc]initWithNibName:@"HomeView" bundle:nil];
NSArray *controllers = [NSArray arrayWithObject:Home];
self.navigationController.viewControllers = controllers;