Name |
Interface Builder Symbol |
Description |
Show |
|
Present the content in the detail or master area depending on the content of the screen. If the app is displaying a master and detail view, the content is pushed onto the detail area. If the app is only displaying the master or the detail, the content is pushed on top of the current view controller stack. |
Show Detail |
|
Present the content in the detail area. If the app is displaying a master and detail view, the new content replaces the current detail. If the app is only displaying the master or the detail, the content replaces the top of the current view controller stack. |
Present Modally |
|
Present the content modally. There are options to choose a presentation style (UIModalPresentationStyle) and a transition style (UIModalTransitionStyle). |
Present as Popover |
|
Present the content as a popover anchored to an existing view. There is an option to specify the possible directions of the arrow shown on one edge of the popover view (UIPopoverArrowDirection). There is also an option to specify the anchor view. |
Custom |
|
A custom segue enabling you to write your own behaviors. |
Push (Deprecated) |
|
Present the content by pushing it onto the current stack of view controllers. |
Modal (Deprecated) |
|
Present the content modally on top of the existing screen. The options are the same as Present Modally. |
Popover (Deprecated) |
|
Present the content as a popover. The options are the same as Present as Popover. |
Replace (Deprecated) |
|
Replace the top view controller on the screen with the new content. |