viewDidAppear(_:)
Notifies the view controller that its view was added to a view hierarchy.
Declaration
func viewDidAppear(_ animated: Bool)Parameters
- animated:
If True, the view was added to the window using an animation.
Mentioned in
Discussion
You can override this method to perform additional tasks associated with presenting the view. If you override this method, you must call super at some point in your implementation.