this is the screen shot of storyboard
I'm using SWRevealViewController
and trying to pushing other view controllers by using this code:
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"main" bundle:nil];
MyprofileQRsViewController *rootViewController = [storyboard instantiateViewControllerWithIdentifier:@"SBMyprofileDetails"];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:rootViewController];
[navController setViewControllers: @[rootViewController] animated: YES];
[self.revealViewController setFrontViewController:navController];
[self.revealViewController setFrontViewPosition: FrontViewPositionRight animated: YES];
Its working well but i can't pop that view controller to previous view controller.. I used all basic popViewcontrollers code still not working. I just can't figure it out what to do. please any body has the trick what to do the reply please.. thanks in advance....