Skip to content
iPhone Duo SupportGet help

Glossary

The vocabulary Apple uses for iPhone Duo, defined in one place.

App Resizability
The Xcode 27.1 app modernization skill, previously named Modernize your UIKit app, now extended to cover SwiftUI and iPhone Duo. It automates part of the mechanical migration work such as finding fixed sizes and deprecated screen references.

See also: Device Hub

Source: Prepare your app for iPhone Duo (Tech Talk 111461)

Arrangement
A layout container that places a primary and a secondary view across iPhone Duo's poses, using size classes, the view's aspect ratio and active division regions as input. Available as ArrangementView in SwiftUI and UIArrangementViewController in UIKit, with split and overlay styles.

See also: Division region, Pose, Size class

Source: Strike a pose with adaptive layouts on iPhone Duo (Tech Talk 111463)

Axis behavior
A property controlling whether a bar item orients vertically when placed in a vertical bar, or stays horizontal regardless. Set with .axisBehavior(.verticalPreferred) or .horizontalOnly in SwiftUI and item.axisBehavior in UIKit.

See also: Vertical bar

Source: Raise the bar with iPhone Duo (Tech Talk 111462)

Device Hub
The Xcode 27.1 simulator interface for iPhone Duo, with on-screen control buttons to open, close, rotate and fold the device so a layout can be checked in every pose.

See also: Pose, App Resizability

Source: Prepare your app for iPhone Duo (Tech Talk 111461)

Division region
A reserved region that divides the iPhone Duo inner display into separate usable areas. The hinge is the example: it is active only while the device is folded and has zero width when the device is flat.

See also: Reserved region, Occlusion region, Pose

Source: Strike a pose with adaptive layouts on iPhone Duo (Tech Talk 111463)

Hinge angle
The physical angle of the iPhone Duo hinge, reported through onHingeChange in SwiftUI and UIHingeInteraction in UIKit, with states closed, partially open and fully open. Apple's guidance is to use it for interactions and effects only, never for layout decisions.

See also: Pose, Division region

Source: Leverage multiple displays and scenes on iPhone Duo (Tech Talk 111464)

Multiple scenes
Support for more than one instance of an app at once, declared with UIApplicationSupportsMultipleScenes. iPhone Duo is the first iPhone to support this. New windows can only be created on the inner display; the outer display is reserved.

See also: Scene accessory, Split View multitasking

Source: Leverage multiple displays and scenes on iPhone Duo (Tech Talk 111464)

Occlusion region
A reserved region that covers part of the display rather than dividing it. On iPhone Duo the under-display FaceTime camera on the inner display is an occlusion region. Background content may pass beneath one; interactive content should not.

See also: Reserved region, Division region, Safe area

Source: Strike a pose with adaptive layouts on iPhone Duo (Tech Talk 111463)

Pose
A physical configuration of iPhone Duo — closed, partially folded like a book, propped on a table, or fully open flat — each combined with an orientation. Xcode's Device Hub simulates poses with on-screen controls to open, close, rotate and fold.

See also: Division region, Device Hub, Hinge angle

Source: Strike a pose with adaptive layouts on iPhone Duo (Tech Talk 111463), Prepare your app for iPhone Duo (Tech Talk 111461)

Reserved region
An area of the screen that system hardware or UI claims, reported by ReservedRegion in SwiftUI and UIViewReservedRegion in UIKit from iOS 27.1. Regions come in two kinds — division and occlusion — and each has an active and an inactive state.

See also: Division region, Occlusion region, Arrangement

Source: Strike a pose with adaptive layouts on iPhone Duo (Tech Talk 111463), Prepare your app for iPhone Duo (Tech Talk 111461)

Safe area
The region of a view not covered by system UI. On iPhone Duo safe areas and layout margins are asymmetric, so each side must be handled independently — code that doubles one inset to account for the opposite side is wrong on this device.

See also: Occlusion region, Reserved region

Source: Prepare your app for iPhone Duo (Tech Talk 111461)

Scene accessory
Supplementary UI shown on one iPhone Duo display while the app's main UI runs on the other — a teleprompter or subject preview on the outer display, for example. The camera capture accessory is available only when the app is full screen on the inner display with an active camera session.

See also: Multiple scenes, Pose

Source: Leverage multiple displays and scenes on iPhone Duo (Tech Talk 111464)

Size class
A coarse description of available layout space, either compact or regular in each dimension. On iPhone Duo the inner display is regular in both dimensions and leaves room for sidebars, while the outer display is compact-width and regular-height.

See also: Pose, Split View multitasking

Source: Prepare your app for iPhone Duo (Tech Talk 111461)

Split View multitasking
Side-by-side app layout on the iPhone Duo inner display. All apps participate whether or not they opt in, so any app can be given an arbitrary fraction of the display at a moment the user chooses.

See also: Size class, Multiple scenes

Source: Leverage multiple displays and scenes on iPhone Duo (Tech Talk 111464), Prepare your app for iPhone Duo (Tech Talk 111461)

Vertical bar
The shared side region on the iPhone Duo inner display in landscape where navigation, toolbar and tab bar controls lay out vertically instead of horizontally, preserving vertical space for content. Apps built against the iOS 27.1 SDK get it with standard containers.

See also: Axis behavior, Size class

Source: Raise the bar with iPhone Duo (Tech Talk 111462)