I have a number of view controllers that I want to navigate; however, I need to implement an intuitive way to move to previous ones. For the button press methods in my view controller custom classes to move forward, I do something like this:
NextViewController *next = [self.storyboard instantiateViewControllerWithId:@"NextViewController"];
[self presentModalViewController:next animated;YES];
With this in mind, how can I return back to previous views?
UINavigationController? Check UINavigationController class reference