IUIViewControllerTransitioningDelegate Interface

Definition

Interface representing the required methods (if any) of the protocol UIViewControllerTransitioningDelegate.

[Foundation.Protocol(Name="UIViewControllerTransitioningDelegate", WrapperType=typeof(UIKit.UIViewControllerTransitioningDelegateWrapper))]
public interface IUIViewControllerTransitioningDelegate : IDisposable, ObjCRuntime.INativeObject
type IUIViewControllerTransitioningDelegate = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

This interface contains the required methods (if any) from the protocol defined by UIViewControllerTransitioningDelegate.

If developers create classes that implement this interface, the implementation methods will automatically be exported to Objective-C with the matching signature from the method defined in the UIViewControllerTransitioningDelegate protocol.

Optional methods (if any) are provided by the UIViewControllerTransitioningDelegate_Extensions class as extension methods to the interface, allowing developers to invoke any optional methods on the protocol.

Properties

Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Extension Methods

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 presenting presents presented.

Applies to