UIViewController.ViewDidAppear(Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called after the View is added to the view hierarchy.
[Foundation.Export("viewDidAppear:")]
public virtual void ViewDidAppear (bool animated);
abstract member ViewDidAppear : bool -> unit
override this.ViewDidAppear : bool -> unit
Parameters
- animated
- Boolean
true
if the appearance was animated.
- Attributes
Remarks
This method is called after the UIView that is this
UIViewController’s View property is added to the display UIView hierarchy.
Application developers who override this method must call base.ViewDidAppear()
in their overridden method.