UIViewController.IsMovingFromParentViewController Property
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.
true
if the current UIViewController is in the process of being removed from its parent UIViewController.
public virtual bool IsMovingFromParentViewController { [Foundation.Export("isMovingFromParentViewController")] get; }
member this.IsMovingFromParentViewController : bool
Property Value
true
only if called during the execution of ViewWillDisappear(Boolean) or ViewDidDisappear(Boolean).
- Attributes
Remarks
The process of removing a UIViewController from its parent UIViewController is bookended by the functions ViewWillDisappear(Boolean) and ViewDidDisappear(Boolean). While those are executing, this property will return true
, at all other times, it will return false
.
Applies to
See also
- <xref:UIKit.UIViewController.ViewWillDisappear>
- <xref:UIKit.UIViewController.ViewDidDisappear>
- RemoveFromParentViewController()