Contents

viewDidDisappear(_:)

Notifies the view controller that its view was removed from a view hierarchy.

Declaration

func viewDidDisappear(_ animated: Bool)

Parameters

  • animated:

    If True, the disappearance of the view was animated.

Mentioned in

Discussion

You can override this method to perform additional tasks associated with dismissing or hiding the view. If you override this method, you must call super at some point in your implementation.

See Also

Responding to view-related events