UIResponder.NextResponder Property

Definition

The next responder on the response chain

public virtual UIKit.UIResponder NextResponder { [Foundation.Export("nextResponder")] get; }
member this.NextResponder : UIKit.UIResponder

Property Value

Next responder in the specified chain to be presented with an event for handling.

Attributes

Remarks

This property returns the next responder in the chain. For UIView objects, this returns the managing UIViewController, or the Superview if the controller is not set. For the UIViewController, this returns its view's Superview. For UIWindows, this returns the UIApplication object. UIApplication objects return null.

Applies to