Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Navigation Based Application.I push First ViewController to Second ViewController and From Second ViewController to Third ViewController Now I want to Pop From Third ViewController to First ViewController.I am Performing This task using the Below Code but i application get's Terminate.Please any body give me some proper Guidelines.I can't use pop to RootViewController because it's Different ViewController.Thanks in Advance...

In Third ViewControler i have Written this:

FirstViewCtr *x=[[FirstViewCtr alloc] initWithNibName:@"FirstViewCtr" bundle:nil];
[self.navigationController popToViewController:x animated:NO];
share|improve this question

3 Answers

up vote 14 down vote accepted

By Writing the First Line you get the Indexes of all View Controllers and from second Line You will reach up to your Destination.

NSArray *array = [self.navigationController viewControllers];

[self.navigationController popToViewController:[array objectAtIndex:2] animated:YES];
share|improve this answer
1  
thats amazing. +1 .. brilliant. im using this in my app right now. – Pavan Aug 23 '12 at 23:52
Thanks for appreciation – iosRider Aug 24 '12 at 9:56

Your code creates a new instance of a view that has never been pushed onto the stack, then tries to pop back to that controller.

If you are popping back to the root view controller, you can uses popToRootViewControllerAnimated:

If you are popping back a known distance you can call popViewControllerAnimated: more than once. In your example, that would be 2 controllers so to calls. You could do the same thing by looking in viewControllers for the controller 2 from the end and popping to it.

The above suggestions are quick fixes. One best practice scenario would be to pass the controller you want to return to along to each successive controller you push. First passes itself to second, second passes that reference to third, third pops to the passed reference, which is first.

In effect, you are creating a temporary root controller. You could subclass UINavigationController and add a temporaryRoot property and a popToTemporaryRootViewControllerAnimated: method that would pop to your temporary root and clear it. When first pushes seconds, it would also set itself as the temporary root so that every controller in the stack does not have to pass a reference around. You would have to add some extra checks to unsure you never pop past the temporaryRoot without clearing it.

share|improve this answer
I have RootViewController then it Pushed into FirstViewController then after SecondViewController then after ThirdViewController while i reach upto ThirdViewController i required pop Directly to the FirstViewController. – iosRider Jun 12 '10 at 8:06

A different and probably safer approach:

- (void) turnBackToAnOldViewController{

    for (UIViewController *controller in self.navigationController.viewControllers) {
        if ([controller isKindOfClass:[AnOldViewController class]]) { 
        //Do not forget to import AnOldViewController.h

            [self.navigationController popToViewController:controller
                                              animated:YES];
            break;
        }
    }

}
share|improve this answer
nice answer.. :) – Paras Joshi May 9 at 9:56
Safer than a native method? How so? – JohnK Jun 1 at 1:33
The native method is the message popToViewController:animated, not the way you are providing the parameters to the message. I believe this solution is safer because when you say [array objectAtIndex:2] , you automatically assume that the number of VC's is bigger than 2. If thats not the case, the program will crash, with my solution it will stand still and wont crash if there is no instance of the required VC. – Yunus Nedim Mehel Jun 3 at 9:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.