Share via


IUIViewControllerAnimatedTransitioning Interface

Definition

This interface represents the Objective-C protocol UIViewControllerAnimatedTransitioning.

[Foundation.Protocol(Name="UIViewControllerAnimatedTransitioning", WrapperType=typeof(UIKit.UIViewControllerAnimatedTransitioningWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="TransitionDuration", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, ReturnType=typeof(System.Double), Selector="transitionDuration:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="AnimateTransition", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, Selector="animateTransition:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetInterruptibleAnimator", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, ReturnType=typeof(UIKit.IUIViewImplicitlyAnimating), Selector="interruptibleAnimatorForTransition:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationEnded", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(System.Boolean) }, Selector="animationEnded:")]
public interface IUIViewControllerAnimatedTransitioning : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="UIViewControllerAnimatedTransitioning", WrapperType=typeof(UIKit.UIViewControllerAnimatedTransitioningWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="TransitionDuration", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, ReturnType=typeof(System.Double), Selector="transitionDuration:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="AnimateTransition", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, Selector="animateTransition:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetInterruptibleAnimator", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, ReturnType=typeof(UIKit.IUIViewImplicitlyAnimating), Selector="interruptibleAnimatorForTransition:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="AnimationEnded", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(System.Boolean) }, Selector="animationEnded:")>]
type IUIViewControllerAnimatedTransitioning = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Properties

Name Description
Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Methods

Name Description
AnimateTransition(IUIViewControllerContextTransitioning)

Animate the transition with the animator object.

AnimationEnded(Boolean)

Indicates that the animation has ended.

GetInterruptibleAnimator(IUIViewControllerContextTransitioning)

Gets the IUIViewControllerAnimatedTransitioning used for the transition.

TransitionDuration(IUIViewControllerContextTransitioning)

The duration, in seconds, of the transition.

Extension Methods

Name Description
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)
AnimationEnded(IUIViewControllerAnimatedTransitioning, Boolean)

Indicates that the animation has ended.

GetInterruptibleAnimator(IUIViewControllerAnimatedTransitioning, IUIViewControllerContextTransitioning)

Gets the IUIViewControllerAnimatedTransitioning used for the transition.

Applies to