I have not yet completed the migration to scene delegate. If I still build with Xcode 26, will my app continue to launch on iOS 27 even if I release updates (still built with Xcode 26) after the iOS 27 release?
UISceneDelegate migration - firm deadline?
The scene lifecycle adoption requirement is tied to building against iOS 27. Apps built against previous releases will continue to work as they previously did.
The scene lifecycle adoption requirement is tied to building against iOS 27. Apps built against previous releases will continue to work as they previously did.
This is exactly right. The requirement is enforced when building with the new 27.0 SDKs (all of them). If you continue to build with the older SDKs, the requirement is not enforced.
Note that there's a point at which building with the new SDK is required for App Store submissions. You can browse the link below to see when that's happened in the past to get a feeling of when that might happen this release (no guarantees):
https://developer.apple.com/news/upcoming-requirements/
Also, if you've not see it, the Tech Note TN3187 has been turned into a full documentation page to help you with this transition:
https://developer.apple.com/documentation/uikit/transitioning-to-the-uikit-scene-based-life-cycle
Thanks!!!