Apple's sessions tell you how to support the foldable. What they don't spell out is the part you can act on this week: on iPhone Duo, what your app looks like depends on which SDK you last built against. Same app, same code, three visibly different results — and only one of them reaches the edge of the inner display.
Compatibility levels
| Built against | On the inner display |
|---|---|
| Pre-iOS 27 SDK | Letterboxed. Your app keeps its old aspect ratio with unused screen around it — it doesn't take advantage of the bigger canvas at all. |
| iOS 27 SDK | Extends left of the status bar and clears the camera area. Much closer to feeling native, but still leaves unused space. |
| iOS 27.1 SDK | Full edge-to-edge, with navigation and toolbar buttons laid out vertically. This is the tier Apple's sessions are teaching against. |
The pleasant surprise: apps that use only standard system controls — stock navigation bars, tab bars, toolbars — land in the third tier without custom layout work. Apps with hand-rolled bars and nav controls do not; that's the part that needs real effort.
Where the timeline actually stands
- iOS 27 — Apple is now accepting app submissions built against it, and it is expected to reach users Monday 14 September (press-reported; Apple hasn't published a date).
- Xcode 27.1 beta — Apple lists it as coming later this month on its Get ready for iPhone Duo page. Until it lands there's no iPhone Duo simulator to test in: the iOS 27.1 release notes are not published.
- Guidance — Designing for iPhone Duo (HIG) is already live. The developer guide, Preparing your app for iPhone Duo, is still listed as coming soon.
- Live help — Group Labs on 16 and 17 September, Photos & Camera / SwiftUI / UIKit Q&As on 23 September. See the full schedule with UTC times.
- Device — pre-orders 16 October, in customers' hands 23 October. Nobody outside Apple gets real hardware to test on before then.
What to do this week
- Rebuild against the iOS 27 SDK (out now) and look at your app on a regular iPhone: you've already cleared the worst compatibility tier.
- Find your screen assumptions. Grep for
UIScreen.main, layout branches on interface orientation, and hardcoded left/right inset math. On the Duo, two displays make "the screen" ambiguous and safe areas are asymmetric — replace them with size classes, trait collection and scene geometry. - Check your bars. If navigation and toolbars come from system containers, move on. If they're custom, that's your October work: on the inner display, bars move to the side and standard controls lay out vertically.
- Look at Touch ID. One line in the prepare-your-app notes: the Duo has no Face ID.
Honest caveat: the 14 September iOS 27 date comes from press reporting, not an Apple statement, and the exact Xcode 27.1 beta day isn't announced. Everything else here — the compatibility levels, the tooling status, the event dates — is from Apple's own pages.
Checklist
- Rebuilt against the iOS 27 SDK today
- No
UIScreen.main, no orientation-based layout decisions - Bars come from system containers (or are queued for the side/vertical layout)
- Signed up for a Group Lab or Q&A
- Xcode 27.1 beta bookmarked for the day it appears