Tuesday, May 1, 2012

Checking if a UIViewController is about to get Popped from a navigation stack?


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.


Source: Tips4all

7 comments:

  1. 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?

    ReplyDelete
  2. 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.

    ReplyDelete
  3. 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.

    ReplyDelete
  4. 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");
    }
    }

    ReplyDelete
  5. 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

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

    ReplyDelete
  7. 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.

    ReplyDelete