UIViewController.ChildViewControllers Property

Definition

An array of UIViewControllers that are managed by this UIViewController.

public virtual UIKit.UIViewController[] ChildViewControllers { [Foundation.Export("childViewControllers")] get; }
member this.ChildViewControllers : UIKit.UIViewController[]

Property Value

An array of UIViewControllers.

Attributes

Remarks

Certain UIViewControllers (e.g., UINavigationController) are primarily concerned with manipulating child controllers. Such controllers are often referred to as “Container View-Controllers.”

This property does not include UIViewControllers “presented” using PresentViewController(UIViewController, Boolean, Action), PresentModalViewController(UIViewController, Boolean), or PresentMoviePlayerViewController(MPMoviePlayerViewController).

Applies to