Share via


IUIViewControllerTransitioningDelegate Interface

Definition

This interface represents the Objective-C protocol UIViewControllerTransitioningDelegate.

[Foundation.Protocol(Name="UIViewControllerTransitioningDelegate", WrapperType=typeof(UIKit.UIViewControllerTransitioningDelegateWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAnimationControllerForPresentedController", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UIViewController), typeof(UIKit.UIViewController), typeof(UIKit.UIViewController) }, ReturnType=typeof(UIKit.IUIViewControllerAnimatedTransitioning), Selector="animationControllerForPresentedController:presentingController:sourceController:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAnimationControllerForDismissedController", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.UIViewController) }, ReturnType=typeof(UIKit.IUIViewControllerAnimatedTransitioning), Selector="animationControllerForDismissedController:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetInteractionControllerForPresentation", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerAnimatedTransitioning) }, ReturnType=typeof(UIKit.IUIViewControllerInteractiveTransitioning), Selector="interactionControllerForPresentation:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetInteractionControllerForDismissal", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerAnimatedTransitioning) }, ReturnType=typeof(UIKit.IUIViewControllerInteractiveTransitioning), Selector="interactionControllerForDismissal:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetPresentationControllerForPresentedViewController", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UIViewController), typeof(UIKit.UIViewController), typeof(UIKit.UIViewController) }, ReturnType=typeof(UIKit.UIPresentationController), Selector="presentationControllerForPresentedViewController:presentingViewController:sourceViewController:")]
public interface IUIViewControllerTransitioningDelegate : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="UIViewControllerTransitioningDelegate", WrapperType=typeof(UIKit.UIViewControllerTransitioningDelegateWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAnimationControllerForPresentedController", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UIViewController), typeof(UIKit.UIViewController), typeof(UIKit.UIViewController) }, ReturnType=typeof(UIKit.IUIViewControllerAnimatedTransitioning), Selector="animationControllerForPresentedController:presentingController:sourceController:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetAnimationControllerForDismissedController", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.UIViewController) }, ReturnType=typeof(UIKit.IUIViewControllerAnimatedTransitioning), Selector="animationControllerForDismissedController:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetInteractionControllerForPresentation", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerAnimatedTransitioning) }, ReturnType=typeof(UIKit.IUIViewControllerInteractiveTransitioning), Selector="interactionControllerForPresentation:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetInteractionControllerForDismissal", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(UIKit.IUIViewControllerAnimatedTransitioning) }, ReturnType=typeof(UIKit.IUIViewControllerInteractiveTransitioning), Selector="interactionControllerForDismissal:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="GetPresentationControllerForPresentedViewController", ParameterByRef=new System.Boolean[] { false, false, false }, ParameterType=new System.Type[] { typeof(UIKit.UIViewController), typeof(UIKit.UIViewController), typeof(UIKit.UIViewController) }, ReturnType=typeof(UIKit.UIPresentationController), Selector="presentationControllerForPresentedViewController:presentingViewController:sourceViewController:")>]
type IUIViewControllerTransitioningDelegate = 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
GetAnimationControllerForDismissedController(UIViewController)

When a dismissal animation is called, this method can be overridden to provide a custom UIViewControllerAnimatedTransitioning.

GetAnimationControllerForPresentedController(UIViewController, UIViewController, UIViewController)

Returns the animation controller that is used when presenting presents presented.

GetInteractionControllerForDismissal(IUIViewControllerAnimatedTransitioning)

When a controller is dismissed and an interaction is desired, this method can be overridden to provide a custom UIViewControllerInteractiveTransitioning.|When a dismissal interaction is called and an interaction animation is desired, t

GetInteractionControllerForPresentation(IUIViewControllerAnimatedTransitioning)

When a controller is presented and an interaction desired, this method can be overridden to provide a custom UIViewControllerInteractiveTransitioning.

GetPresentationControllerForPresentedViewController(UIViewController, UIViewController, UIViewController)

Returns the presentation controller that is used when presentingViewController presents presentedViewController.

Extension Methods

Name Description
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)
GetAnimationControllerForDismissedController(IUIViewControllerTransitioningDelegate, UIViewController)

When a dismissal animation is called, this method can be overridden to provide a custom UIViewControllerAnimatedTransitioning.

GetAnimationControllerForPresentedController(IUIViewControllerTransitioningDelegate, UIViewController, UIViewController, UIViewController)

Returns the animation controller that is used when presenting presents presented.

GetInteractionControllerForDismissal(IUIViewControllerTransitioningDelegate, IUIViewControllerAnimatedTransitioning)

When a controller is dismissed and an interaction is desired, this method can be overridden to provide a custom UIViewControllerInteractiveTransitioning.|When a dismissal interaction is called and an interaction animation is desired, t

GetInteractionControllerForPresentation(IUIViewControllerTransitioningDelegate, IUIViewControllerAnimatedTransitioning)

When a controller is presented and an interaction desired, this method can be overridden to provide a custom UIViewControllerInteractiveTransitioning.

GetPresentationControllerForPresentedViewController(IUIViewControllerTransitioningDelegate, UIViewController, UIViewController, UIViewController)

Returns the presentation controller that is used when presentingViewController presents presentedViewController.

Applies to