I am creating an app using iOS 5 SDK. I managed to push views using the Storyboard\'s Segues, but I cannot find the proper way to pop the current view and go back to the pre
You could try calling [self dismissViewControllerAnimated:YES completion:nil]; from the controller you want to dismiss (whether the controller has been pushed, or shown modally).
Here is the related documentation : UIViewController Class Reference
The presenting view controller is responsible for dismissing the view controller it presented. If you call this method on the presented view controller itself, it automatically forwards the message to the presenting view controller.