From cebc69dc73e661ad89f0208cae049172d91d92c4 Mon Sep 17 00:00:00 2001 From: Hal Mueller Date: Mon, 26 Feb 2024 20:25:45 -0800 Subject: [PATCH 1/2] add session links and a couple of notes --- content/notes/wwdc23/10090.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/notes/wwdc23/10090.md b/content/notes/wwdc23/10090.md index a10d2985..3a29f44d 100644 --- a/content/notes/wwdc23/10090.md +++ b/content/notes/wwdc23/10090.md @@ -1,5 +1,5 @@ --- -contributors: coughski +contributors: coughski, halmueller --- ## Introduction @@ -31,7 +31,7 @@ System views like photo picker will match system appearance No way to rotate Apple Vision Pro, so your app may want to specify a preferred rotation for new scenes -Use `UIPreferredDefaultInterfaceOrientation` plist key for this +Use `UIPreferredDefaultInterfaceOrientation` plist key for this (new key for visionOS) `UISupportedInterfaceOrientations` used by system to provide window rotation controls @@ -43,13 +43,13 @@ All suitable apps are automatically made available on the App Store Gestures: Max of 2 simultaneous inputs supported -Existing `ARView`s and `ARSession`s need to be rebuilt +Existing `ARView`s and `ARSession`s need to be rebuilt, won't work on visionOS. See "Re-imagine your ARKit app for spatial experiences [_sic_]" (probably [session 10091](https://developer.apple.com/videos/play/wwdc2023/10091), maybe [session 10082](https://developer.apple.com/videos/play/wwdc2023/10082)). Location approximated via Wi-Fi or shared from iPhone Look to dictate interaction available on search bars -Disabled by default on iPhone and iPad apps +Disabled by default on iPhone and iPad apps. Code sample 07:59. Enable by adding `.searchDictationBehavior(.inline(activation: .onLook))` to SwiftUI From dd05d4393affbc09245d3eac385d63be3210a381 Mon Sep 17 00:00:00 2001 From: Hal Mueller Date: Tue, 27 Feb 2024 22:06:25 -0800 Subject: [PATCH 2/2] edits per CR --- content/notes/wwdc23/10090.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/notes/wwdc23/10090.md b/content/notes/wwdc23/10090.md index 3a29f44d..ab66dec6 100644 --- a/content/notes/wwdc23/10090.md +++ b/content/notes/wwdc23/10090.md @@ -1,5 +1,5 @@ --- -contributors: coughski, halmueller +contributors: coughski --- ## Introduction @@ -43,13 +43,14 @@ All suitable apps are automatically made available on the App Store Gestures: Max of 2 simultaneous inputs supported -Existing `ARView`s and `ARSession`s need to be rebuilt, won't work on visionOS. See "Re-imagine your ARKit app for spatial experiences [_sic_]" (probably [session 10091](https://developer.apple.com/videos/play/wwdc2023/10091), maybe [session 10082](https://developer.apple.com/videos/play/wwdc2023/10082)). +Existing `ARView`s and `ARSession`s need to be rebuilt, won't work on visionOS. See "Re-imagine your ARKit app for spatial experiences [_sic_]" +(No session with that name exists; probably referring to [Evolve your ARKit app for spatial experiences](https://developer.apple.com/videos/play/wwdc2023/10091), maybe [Meet ARKit for spatial computing](https://developer.apple.com/videos/play/wwdc2023/10082).) Location approximated via Wi-Fi or shared from iPhone Look to dictate interaction available on search bars -Disabled by default on iPhone and iPad apps. Code sample 07:59. +Disabled by default on iPhone and iPad apps. [Code sample 07:59](https://developer.apple.com/videos/play/wwdc2023-10090/?time=479). Enable by adding `.searchDictationBehavior(.inline(activation: .onLook))` to SwiftUI