Share via


IUIViewControllerInteractiveTransitioning Interface

Definition

This interface represents the Objective-C protocol UIViewControllerInteractiveTransitioning.

[Foundation.Protocol(Name="UIViewControllerInteractiveTransitioning", WrapperType=typeof(UIKit.UIViewControllerInteractiveTransitioningWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="StartInteractiveTransition", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, Selector="startInteractiveTransition:")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="completionSpeed", IsProperty=true, IsRequired=false, IsStatic=false, Name="CompletionSpeed", PropertyType=typeof(System.Runtime.InteropServices.NFloat), Selector="completionSpeed")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="completionCurve", IsProperty=true, IsRequired=false, IsStatic=false, Name="CompletionCurve", PropertyType=typeof(UIKit.UIViewAnimationCurve), Selector="completionCurve")]
[Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="wantsInteractiveStart", IsProperty=true, IsRequired=false, IsStatic=false, Name="WantsInteractiveStart", PropertyType=typeof(System.Boolean), Selector="wantsInteractiveStart")]
public interface IUIViewControllerInteractiveTransitioning : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="UIViewControllerInteractiveTransitioning", WrapperType=typeof(UIKit.UIViewControllerInteractiveTransitioningWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="StartInteractiveTransition", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerContextTransitioning) }, Selector="startInteractiveTransition:")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="completionSpeed", IsProperty=true, IsRequired=false, IsStatic=false, Name="CompletionSpeed", PropertyType=typeof(System.Runtime.InteropServices.NFloat), Selector="completionSpeed")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="completionCurve", IsProperty=true, IsRequired=false, IsStatic=false, Name="CompletionCurve", PropertyType=typeof(UIKit.UIViewAnimationCurve), Selector="completionCurve")>]
[<Foundation.ProtocolMember(ArgumentSemantic=ObjCRuntime.ArgumentSemantic.None, GetterSelector="wantsInteractiveStart", IsProperty=true, IsRequired=false, IsStatic=false, Name="WantsInteractiveStart", PropertyType=typeof(System.Boolean), Selector="wantsInteractiveStart")>]
type IUIViewControllerInteractiveTransitioning = 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
CompletionCurve

Returns the completion curve, which controls the speed of the animation as it progresses.

CompletionSpeed

Returns the overall relative speed of an animation. The default value is 1.0.

Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)
WantsInteractiveStart

Gets whether the transition is interactive.

Methods

Name Description
StartInteractiveTransition(IUIViewControllerContextTransitioning)

Sets up and begins a view controller interactive transition.

Extension Methods

Name Description
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)
GetCompletionCurve(IUIViewControllerInteractiveTransitioning)

Returns the completion curve, which controls the speed of the animation as it progresses.

GetCompletionSpeed(IUIViewControllerInteractiveTransitioning)

Returns the overall relative speed of an animation. The default value is 1.0.

GetWantsInteractiveStart(IUIViewControllerInteractiveTransitioning)

Gets whether the transition is interactive.

Applies to