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

I need to know when my view controller is about to get popped from a nav stack so I can perform an action.

I can't use -viewWillDisappear, because that gets called when the view controller is moved off screen for ANY reason (like a new view controller being popped on top).

I specifically need to know when the controller is about to be popped itself.

Any ideas would be awesome, thanks in advance.

share|improve this question

7 Answers

up vote 7 down vote accepted

I don't think there is an explicit message for this, but you could subclass the UINavigationController and override - popViewControllerAnimated (although I haven't tried this before myself).

Alternatively, if there are no other references to the view controller, could you add to its - dealloc?

share|improve this answer
The dealloc will only be called after the pop, though, not before. – Jesse Rusak Mar 13 '09 at 12:03
I don't think that's the best solution. I want to use this controller in other places in the app, and the behaviour I want to execute is specific to this controller and has to happen when the controller is popped. I don't want to have to subclass every navController this viewController appears in. – Jasarien Mar 13 '09 at 13:10
It seems that this is best solution. It seems to work, so thanks! – Jasarien Mar 13 '09 at 13:46
1  
Try this: subclass UIViewController, override popViewController:animated: and send a custom message to the UIViewController's delegate. Then, the delegate can decide what it needs to do in each case. – Alex Mar 13 '09 at 20:42
2  
Subclassing 'UINavigationController' will lead app to be rejected by apple. documentation – HelmiB Nov 15 '11 at 8:00
show 1 more comment

override the ViewWillDisappear method in the presented VC, then check the IsMovingFromParentViewController flag within the override and do specific logic. In my case I'm hiding the navigation controllers toolbar. Still requires that your presented VC understand that it was pushed though so not perfect.

share|improve this answer
this solution works only on iOS 5 and above. – Andrey Z. Mar 19 '12 at 8:39
This is a clean solution in iOS 5+, and who isn't on iOS 5 at this point? – Ethan Feb 22 at 3:31

You can catch it here.

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated {

    if (viewController == YourAboutToAppearController) {
            // do something
    }
}

This will fire just before the display of the new View. Nobody's moved yet. I use all the time to do magic in front of the asinine NavigationController. You can set titles and button titles and do whatever there.

share|improve this answer
My experimentation suggests that actually [UINavigationController visibleViewController] is already set to YourAboutToAppearController. Though indeed the animation has yet to start. – Max Howell Jan 11 '11 at 16:41
Using the UINavigationControllerDelegate seems like a better option than subclassing UINavigationController. – Jessedc Apr 24 at 1:15

This is working for me.

- (void)viewDidDisappear:(BOOL)animated
{
    if (self.parentViewController == nil) {
        NSLog(@"viewDidDisappear doesn't have parent so it's been popped");
        //release stuff here
    } else {
        NSLog(@"PersonViewController view just hidden");
    }
}
share|improve this answer
This is exactly what I needed. Thanks. – grahamparks Sep 1 '10 at 11:18
This doesn't work with 4.1. – chrish Oct 22 '10 at 13:40
Checked on iOS 6 - doesn't work. – Rudolf Adamkovic Oct 3 '12 at 10:13
also there's a side effect with full screen uipopovercontrollers or modal view controllers appearing and triggering these. – johndpope Jan 9 at 9:35

I tried this:

- (void) viewWillDisappear:(BOOL)animated {
    // If we are disappearing because we were removed from navigation stack
    if (self.navigationController == nil) {
        // YOUR CODE HERE
    }

    [super viewWillDisappear:animated];
}

The idea is that at popping, the view controller's navigationController is set to nil. So if the view was to disappear, and it longer has a navigationController, I concluded it was popped. (might not work in other scenarios).

Can't vouch that viewWillDisappear will be called upon popping, as it is not mentioned in the docs. I tried it when the view was top view, and below top view - and it worked in both.

Good luck, Oded.

share|improve this answer
1  
An interesting idea and approach, but I fear it may be slightly too fragile. It relies on an implementation detail that could change at any time. – Jasarien Mar 31 '11 at 11:25
Agreed, hence that last skepticism. – Oded Ben Dov Apr 3 '11 at 14:18
Thanks Oded, that little snippet helped quite alot! – Reflog May 23 '11 at 7:09

I have the same problem. I tried with viewDisDisappear, but I don't have the function get called :( (don't know why, maybe because all my VC is UITableViewController). The suggestion of Alex works fine but it fails if your Navigation controller is displayed under the More tab. In this case, all VCs of your nav controllers have the navigationController as UIMoreNavigationController, not the navigation controller you have subclassed, so you will not be notified by the nav when a VC is about to popped.
Finaly, I solved the problem with a category of UINavigationController, just rewrite - (UIViewController *)popViewControllerAnimated:(BOOL)animated

- (UIViewController *)popViewControllerAnimated:(BOOL)animated{
   NSLog(@"UINavigationController(Magic)");
   UIViewController *vc = self.topViewController;
   if ([vc respondsToSelector:@selector(viewControllerWillBePopped)]) {
      [vc performSelector:@selector(viewControllerWillBePopped)];
   }
   NSArray *vcs = self.viewControllers;
   UIViewController *vcc = [vcs objectAtIndex:[vcs count] - 2];
   [self popToViewController:vcc animated:YES];
   return vcc;}

It works well for me :D

share|improve this answer
This is a great solution and not fragile at all as other suggestions. One could also use a Notification so anyone wanting to know about popped views could listen in. – David H Nov 2 '11 at 19:49
Yes, this would be a good answer, super fast, without delegate, without notification.... thanks. Adding the logic to the viewDidDisapper is not perfect, for example, when pushing or presenting another view controller inside it, the viewDidDisAppear will be invoked too.... This is why I really like this option. – flypig Nov 17 '12 at 16:52
Actually, subclass will be a better choice, or there will be a warning, but you can surpress it via: #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wobjc-protocol-method-implementation" .......... #pragma clang diagnostic pop – flypig Nov 17 '12 at 16:59

Maybe you could use UINavigationBarDelegate's navigationBar:shouldPopItem protocol method.

share|improve this answer
1  
I tried that first. However, my Navigation Bar is managed by the navigation controller, and manually setting the delegate of the bar to be my view controller results in an exception that explains manually setting the delegate on the nav bar is not allowed if the bar is managed by a nav controller. – Jasarien Mar 13 '09 at 20:45

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.