From 43e2ddf15ac1bf1164d5d6d0271757fc54c8618f Mon Sep 17 00:00:00 2001 From: louisehsu Date: Thu, 12 Feb 2026 16:14:43 -0800 Subject: [PATCH 1/3] init --- .../release/breaking-changes/uiscenedelegate.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/content/release/breaking-changes/uiscenedelegate.md b/src/content/release/breaking-changes/uiscenedelegate.md index a741ea1ed7..38ad062119 100644 --- a/src/content/release/breaking-changes/uiscenedelegate.md +++ b/src/content/release/breaking-changes/uiscenedelegate.md @@ -804,12 +804,12 @@ performed here related to the launch options should be moved to the 6. [Optional] Migrate other deprecated APIs to support multiple scenes in the future. -| Deprecated API | UIScene Replacement | -|:---------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------| -| [`UIScreen mainScreen`](https://developer.apple.com/documentation/uikit/uiscreen/1617815-mainscreen) | [`self.pluginRegistrar.viewController.view.window.windowScene.screen`](https://developer.apple.com/documentation/uikit/uiwindowscene/screen?language=objc) | -| [`UIApplication keyWindow`](https://developer.apple.com/documentation/uikit/uiapplication/1622924-keywindow) | [`self.pluginRegistrar.viewController.view.window.windowScene.keyWindow`](https://developer.apple.com/documentation/uikit/uiwindowscene/keywindow?language=objc) | -| [`UIApplication windows`](https://developer.apple.com/documentation/uikit/uiapplication/windows) | [`self.pluginRegistrar.viewController.view.window.windowScene.windows`](https://developer.apple.com/documentation/uikit/uiwindowscene/windows?language=objc) | -| [`UIApplicationDelegate window`](https://developer.apple.com/documentation/uikit/uiapplicationdelegate/window) | [`self.pluginRegistrar.viewController.view.window.windowScene.keyWindow`](https://developer.apple.com/documentation/uikit/uiview/window?language=objc) | +| Deprecated API | UIScene Replacement | +|:---------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------| +| [`UIScreen mainScreen`](https://developer.apple.com/documentation/uikit/uiscreen/1617815-mainscreen) | [`UIWindowScene screen`](https://developer.apple.com/documentation/uikit/uiwindowscene/screen?language=objc) | +| [`UIApplication keyWindow`](https://developer.apple.com/documentation/uikit/uiapplication/1622924-keywindow) | [`UIWindowScene window`](https://developer.apple.com/documentation/uikit/uiwindowscene/keywindow?language=objc) | +| [`UIApplication windows`](https://developer.apple.com/documentation/uikit/uiapplication/windows) | [`UIWindowScene windows`](https://developer.apple.com/documentation/uikit/uiwindowscene/windows?language=objc) | +| [`UIApplicationDelegate window`](https://developer.apple.com/documentation/uikit/uiapplicationdelegate/window) | [`UIView windows`](https://developer.apple.com/documentation/uikit/uiview/window?language=objc) | Instead of accessing these APIs, you can access the windowScene through the viewController. See examples below. From de8d88e54ad4ea4f27f8c653b57e9914e3e763c4 Mon Sep 17 00:00:00 2001 From: louisehsu Date: Thu, 12 Feb 2026 16:34:44 -0800 Subject: [PATCH 2/3] init --- .../release/breaking-changes/uiscenedelegate.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/content/release/breaking-changes/uiscenedelegate.md b/src/content/release/breaking-changes/uiscenedelegate.md index 38ad062119..440314fccc 100644 --- a/src/content/release/breaking-changes/uiscenedelegate.md +++ b/src/content/release/breaking-changes/uiscenedelegate.md @@ -804,12 +804,12 @@ performed here related to the launch options should be moved to the 6. [Optional] Migrate other deprecated APIs to support multiple scenes in the future. -| Deprecated API | UIScene Replacement | -|:---------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------| -| [`UIScreen mainScreen`](https://developer.apple.com/documentation/uikit/uiscreen/1617815-mainscreen) | [`UIWindowScene screen`](https://developer.apple.com/documentation/uikit/uiwindowscene/screen?language=objc) | -| [`UIApplication keyWindow`](https://developer.apple.com/documentation/uikit/uiapplication/1622924-keywindow) | [`UIWindowScene window`](https://developer.apple.com/documentation/uikit/uiwindowscene/keywindow?language=objc) | -| [`UIApplication windows`](https://developer.apple.com/documentation/uikit/uiapplication/windows) | [`UIWindowScene windows`](https://developer.apple.com/documentation/uikit/uiwindowscene/windows?language=objc) | -| [`UIApplicationDelegate window`](https://developer.apple.com/documentation/uikit/uiapplicationdelegate/window) | [`UIView windows`](https://developer.apple.com/documentation/uikit/uiview/window?language=objc) | +| Deprecated API | UIScene Replacement | +|:---------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------| +| [`UIScreen mainScreen`](https://developer.apple.com/documentation/uikit/uiscreen/1617815-mainscreen) | [`UIWindowScene screen`](https://developer.apple.com/documentation/uikit/uiwindowscene/screen?language=objc) | +| [`UIApplication keyWindow`](https://developer.apple.com/documentation/uikit/uiapplication/1622924-keywindow) | [`UIWindowScene keyWindow`](https://developer.apple.com/documentation/uikit/uiwindowscene/keywindow?language=objc) | +| [`UIApplication windows`](https://developer.apple.com/documentation/uikit/uiapplication/windows) | [`UIWindowScene windows`](https://developer.apple.com/documentation/uikit/uiwindowscene/windows?language=objc) | +| [`UIApplicationDelegate window`](https://developer.apple.com/documentation/uikit/uiapplicationdelegate/window) | [`UIView window`](https://developer.apple.com/documentation/uikit/uiview/window?language=objc) | Instead of accessing these APIs, you can access the windowScene through the viewController. See examples below. From c2b3932df86c47bbea93ee6a480fe43daadd230d Mon Sep 17 00:00:00 2001 From: LouiseHsu Date: Fri, 13 Feb 2026 12:32:30 -0800 Subject: [PATCH 3/3] Update src/content/release/breaking-changes/uiscenedelegate.md Co-authored-by: Victoria Ashworth <15619084+vashworth@users.noreply.github.com> --- src/content/release/breaking-changes/uiscenedelegate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/release/breaking-changes/uiscenedelegate.md b/src/content/release/breaking-changes/uiscenedelegate.md index 440314fccc..e66132d192 100644 --- a/src/content/release/breaking-changes/uiscenedelegate.md +++ b/src/content/release/breaking-changes/uiscenedelegate.md @@ -811,7 +811,7 @@ performed here related to the launch options should be moved to the | [`UIApplication windows`](https://developer.apple.com/documentation/uikit/uiapplication/windows) | [`UIWindowScene windows`](https://developer.apple.com/documentation/uikit/uiwindowscene/windows?language=objc) | | [`UIApplicationDelegate window`](https://developer.apple.com/documentation/uikit/uiapplicationdelegate/window) | [`UIView window`](https://developer.apple.com/documentation/uikit/uiview/window?language=objc) | -Instead of accessing these APIs, you can access the windowScene through the viewController. See examples below. +Instead of accessing these APIs, you can access the `windowScene` through the `viewController`. See examples below.