IUISplitViewControllerDelegate Interface

Definition

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

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

Remarks

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

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 UISplitViewControllerDelegate protocol.

Optional methods (if any) are provided by the UISplitViewControllerDelegate_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

CollapseSecondViewController(IUISplitViewControllerDelegate, UISplitViewController, UIViewController, UIViewController)

Collapses the secondary view controller on splitViewController.

EventShowDetailViewController(IUISplitViewControllerDelegate, UISplitViewController, UIViewController, NSObject)

Returns true if the delegate will display the detail view itself, rather than relying on splitViewController.

EventShowViewController(IUISplitViewControllerDelegate, UISplitViewController, UIViewController, NSObject)

Shows vc in the primary position.

GetPreferredInterfaceOrientationForPresentation(IUISplitViewControllerDelegate, UISplitViewController)

Returns the preferred user interface orientation to use when presenting splitViewController.

GetPrimaryViewControllerForCollapsingSplitViewController(IUISplitViewControllerDelegate, UISplitViewController)

Returns the primary view controller for the collapsing view controller splitViewController.

GetPrimaryViewControllerForExpandingSplitViewController(IUISplitViewControllerDelegate, UISplitViewController)

Returns the primary view controller for the expanding view controller splitViewController.

GetTargetDisplayModeForAction(IUISplitViewControllerDelegate, UISplitViewController)

Returns the display mode for the svc action.

SeparateSecondaryViewController(IUISplitViewControllerDelegate, UISplitViewController, UIViewController)

Returns a new secondary view controller to use in split-view mode, or nil to use the default.

ShouldHideViewController(IUISplitViewControllerDelegate, UISplitViewController, UIViewController, UIInterfaceOrientation)

Developers should not use this deprecated method. Developers should use 'UISearchController' instead.

SupportedInterfaceOrientations(IUISplitViewControllerDelegate, UISplitViewController)

Returns the supported interface orientations for splitViewController.

WillChangeDisplayMode(IUISplitViewControllerDelegate, UISplitViewController, UISplitViewControllerDisplayMode)

The split view controller svc will change its display mode to displayMode.

WillHideViewController(IUISplitViewControllerDelegate, UISplitViewController, UIViewController, UIBarButtonItem, UIPopoverController)

Indicates that the UISplitViewController is about to be hidden.

WillPresentViewController(IUISplitViewControllerDelegate, UISplitViewController, UIPopoverController, UIViewController)

Indicates that the UISplitViewController is about to be presented.

WillShowViewController(IUISplitViewControllerDelegate, UISplitViewController, UIViewController, UIBarButtonItem)

Indicates that the UISplitViewController is about to be shown.

Applies to