viewdidunload is not getting called at all

11,472

Solution 1

As others have mentioned, viewDidUnload is a method of UIViewController. It isn't guaranteed to get called. It only gets called in low memory situations when the app releases the controller's view to free up memory. This gives you an opportunity to release any of the view's subviews that you may have retained as properties of your controller.

If you're calling removeFromSuperview on your view controller's view, then you're probably using UIViewController in a context it wasn't designed to handle. View controllers are designed to manage full-screen views. These views are expected to be presented in just a handful of contexts on the iPhone:

  1. As the full-screen view of the window's root view controller
  2. As a full screen view in a hierarchy of screens managed by UINavigationController
  3. As a full screen view presented within a tab
  4. As a full screen view presented using presentModalViewController:animated:

As long as you're using the view controller in these contexts (plus a couple other contexts on iPad), then you can reliably manage your view's life-cycle via the loadView, viewDidLoad, viewWillAppear:animated:, viewDidAppear:animated:, viewWillDisappear:animated:, and viewDidDisappear:animated:, and viewDidUnload methods (again, bearing in mind that viewDidUnload won't always get called).

The only time you should typically pass a view controller's view to addSubview: is when you add your root view controller's view to the window. If you want to try to use a nested view controller to manage a non-fullscreen subview, you'll have to call its viewWill/DidAppear/Disappear:animated: and viewDidUnload methods manually at appropriate times from your full-screen view's controller.

Solution 2

viewDidUnload is called when a UIViewControllers's view is unloaded, not when a subview is removed from view.

Share:
11,472
Adithya
Author by

Adithya

Updated on June 24, 2022

Comments

  • Adithya
    Adithya almost 2 years

    My problem is like this:

    1. Parent class loads a child view.
    2. Child removes itself during an action by using "removeFromSuperView".
    3. Parent class gets a delegate call when the child gets removed and hence makes the child object nil.

    Still the child class's viewdidunload is not called!

  • Adithya
    Adithya about 13 years
    My child is inherited from UIViewController only. But it is not getting called.Anymore suggestions?
  • freespace
    freespace about 13 years
    When the view is hidden and the iOS decides it needs more memory and releases the non-visible view.
  • Adithya
    Adithya about 13 years
    Ok. So it's the memory part and the OS playing it all. Thank you!
  • freespace
    freespace about 13 years
    You are welcome. Make sure to upvote answers that were helpful.
  • Martin Berger
    Martin Berger over 11 years
    To notice: "View controllers are designed to manage full-screen views."