in my app i have UIScrollView that contains N ViewControllers that can be swiped to the left or right
In each controller i want to be able to push new viewController and i managed to do that im getting back to the original ViewController by executing [self.navigationController popToRootViewControllerAnimated:YES];
the issue is when i execute this code the K+1(k original controller) viewController get Showed and then it pushed back to the wanted view controller
the project code can be downloaded from the link
please advice how i can make the pop smooth without showing controller K+1