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

Here is the pitch.

  • I have a UIViewController subclass which does something in its viewWillAppear and viewDidAppear methods.
  • I want to nest this view controller in a UINavigationViewController.
  • Depending on the view hierarchy complexity the two methods viewWillAppear and viewDidAppear of my controller may not be called.

What should I do then to make sure these two methods are always called regardless of my view hierarchy?

Example of a "complex" view hierarchy:

UIViewController subclass containing a UITabBarController
     |_ Each tab containing a UINavigationViewController
         |_ Each UINavigationController controller containing a custom UIViewController

When you present the TabBarController as a modal view the viewWillAppear and viewDidAppear methods of the TabBarController are called but not those of the custom UIViewControllers nested under the UINavigationViewControllers.

share|improve this question

2 Answers

up vote 7 down vote accepted

When nesting a custom UIViewController under a UINavigationViewController the methods viewWillAppear and viewDidAppear of the custom viewController may not be called depending on the complexity of your view controller hierarchy (think modal views, navigation controller inside tab view controller...). So if you find yourself in this situation what can you do to ensure these two methods are called?

The answer...

Use the UINavigationViewControllerDelegate methods

This is a very elegant method to implement for it does not rely on any assumptions regarding when the controller will be loaded by the navigation controller.

There are two methods available:

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

Here is how the code would change.

You need to declare that your CustomViewController implements the UINavigationViewControllerDelegate protocol:

@interface CustomViewController : UIViewController <UINavigationControllerDelegate>

You need to set your CustomViewController as the delegate of the UINavigationController where you initialize it.

Last you must also add your custom implementation of the UINavigationControllerDelegate methods to your CustomViewController class implementation. For instance you can implement the navigationController:willShowViewController:animated: method so that:

  • when the UINavigationController is about to show the view controller itself your viewWillAppear method is called
  • when the UINavigationController is about to show another view controller the delegate of the UINavigationController is set to this other view controller, provided that this view controller implements the UINavigationViewControllerDelegate method.

List item

- (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated
{
    if ([viewController isEqual:self]) {
            [viewController viewWillAppear:animated];
    } else if ([viewController conformsToProtocol:@protocol(UINavigationControllerDelegate)]){
            // Set the navigation controller delegate to the passed-in view controller and call the UINavigationViewControllerDelegate method on the new delegate.
            [navigationController setDelegate:(id<UINavigationControllerDelegate>)viewController];
            [[navigationController delegate] navigationController:navigationController willShowViewController:viewController animated:YES];
    }
}

And the navigationController:didShowViewController:animated: can be implemented simply as follows:

- (void)navigationController:(UINavigationController *)navigationController 
       didShowViewController:(UIViewController *)viewController 
                    animated:(BOOL)animated
{
    if ([viewController isEqual:self]) {
        [self viewDidAppear:animated];
    }
}

The benefit of this approach is really that you solely rely on the way the UINavigationViewController is supposed to work and you make your calls just at the right time. It also allows you to pass the delegation around as you move up and down the navigation controller hierarchy right before the viewWillAppear method is called.

Again for simple hierarchy this may not be required. But if you ever find yourself in a situation where your viewWillAppear and viewDidAppear methods are not called you now know what to do...

share|improve this answer
Do you have a source for this statement? I'm pretty sure I'm using viewWillAppear in this situation and it is being called. (will go and check now, though!) – jrturton Oct 6 '11 at 17:06
@jrturton It's particularly the case when you start playing with modal view controllers and more complex hierarchy. And the solution remains generic: if your method is not called, use the UINavigationControllerDelegate protocol instead of direct calls – MiKL Oct 6 '11 at 18:48
@jrturton I've made my statement a bit less strong to reflect the fact that if the methods are not called you can use the delegation technique instead of direct calls. – MiKL Oct 6 '11 at 18:53
You had me worried there for a minute! – jrturton Oct 6 '11 at 19:03
@jrturton sorry... I'm restating the problem and solution right now so as not to scare people like I scared you... – MiKL Oct 6 '11 at 19:21
show 1 more comment

it should be done as follows:

See (*1) edit

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    CustomViewController *controller = [[CustomViewController alloc] initWithNibName:nil bundle:nil];
    UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:controller];
    [controller release];

    self.window.rootViewController = navController; //(*1)
    [self.window makeKeyAndVisible];
    [navController release];
    return YES;
}
share|improve this answer
Indeed. But this was a copy/past mistake. See my answer to this problem... – MiKL Oct 6 '11 at 14:10
Ok. And does CustomViewController appear? If not try CustomViewController *controller = [CustomViewController new]; instead of CustomViewController *controller = [[CustomViewController alloc] initWithNibName:nil bundle:nil]; – mrd3650 Oct 6 '11 at 14:20
Yep it appears fine... That's not the point of the question though. The controller always appear but when nested inside a UINavigationController the viewWillAppear and viewDidAppear methods are not called. – MiKL Oct 6 '11 at 14:58
Oh ok. In that case I don't know I'm sorry :/ – mrd3650 Oct 6 '11 at 15:22

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.