UIViewController.ShouldAutomaticallyForwardAppearanceMethods Property

Definition

Whether appearance methods should be forwarded to child UIViewControllers.

[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual bool ShouldAutomaticallyForwardAppearanceMethods { [Foundation.Export("shouldAutomaticallyForwardAppearanceMethods")] [ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 6, 0, ObjCRuntime.PlatformArchitecture.All, null)] get; }
member this.ShouldAutomaticallyForwardAppearanceMethods : bool

Property Value

The default value is true.

Attributes

Remarks

Application developers who override this member and set it to false are responsible for controlling their child UIViewController’s UIViews appearance. Application developers should call their child UIViewController’s BeginAppearanceTransition(Boolean, Boolean) and EndAppearanceTransition() methods as appropriate.

Applies to

See also