Dismiss pushed view from within Navigation Controller
In Swift it would be calling the method
navigationController?.popViewController(animated: true)
Obtain a reference to your UINavigationController and call
- (UIViewController *)popViewControllerAnimated:(BOOL)animated
on it.