UIView.TintColorDidChange Method

Definition

Called when the TintColor changes, such as when a UIActionSheet is displayed.

[Foundation.Export("tintColorDidChange")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 7, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void TintColorDidChange ();
abstract member TintColorDidChange : unit -> unit
override this.TintColorDidChange : unit -> unit
Attributes

Remarks

When a UIActionSheet is displayed, visible UIViews will have their tint grayed out (desaturated), indicating to the application user that they must interact with the UIActionSheet. By overriding this method, application developers can customize the desaturation of custom UIViews.

Applies to