Contents

present(_:asPopoverRelativeTo:of:preferredEdge:behavior:)

Presents another view controller as a popover.

Declaration

func present(_ viewController: NSViewController, asPopoverRelativeTo positioningRect: NSRect, of positioningView: NSView, preferredEdge: NSRectEdge, behavior: NSPopover.Behavior)

Parameters

  • viewController:

    The other view controller to present as a popover.

  • positioningRect:

    The content size of the popover.

  • positioningView:

    The view relative to which the popover should be positioned. Must not be nil, or else the view controller raises an Invalidargumentexception exception.

  • preferredEdge:

    The edge of positioningView that the popover should prefer to be anchored to.

  • behavior:

    The popover’s closing behavior. See the Behavior Swift.enum enumeration.

Discussion

This method calls the present(_:animator:) method on self (the presenting view controller), and passes a popover animator to that method.

The presented view controller is the delegate and the content view controller of the popover. You can use NSPopoverDelegate methods to customize the popover.

To dismiss the popover, call the dismiss(_:) method on self (the presenting view controller).

See Also

Presenting Another View Controller’s Content