1

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]; 
seggy
  • 1,176
  • 2
  • 18
  • 38

1 Answers1

0

please check this link

HomeView *Home = [[HomeView alloc]initWithNibName:@"HomeView" bundle:nil];
NSArray *controllers = [NSArray arrayWithObject:Home];
self.navigationController.viewControllers = controllers;
Community
  • 1
  • 1
seggy
  • 1,176
  • 2
  • 18
  • 38