Post

Replies

Boosts

Views

Activity

NavigationSplitView + OutlineGroup on macOS: Outlinegroup elements not selectable
On macOS 13.2, with Xcode 14.2, I've set up a NavigationSplitView with 3 panes. I have an OutlineGroup in the sidebar, and selecting parent nodes works fine (and the navigation works great), however selecting a child node just shows the selection for a split second and then returns to the previous selection (a parent node). I've tried nearly everything I can find on the internet, etc, and nothing seems to make it work. It's rather hard for me to post the code right now (I'd have to sanitize a lot of it), but wondered if anyone is aware or has a workaround for this? Note: I have this all wrapped in a List, and other items in the list are working just fine. Only the items in the OutlineGroup are acting funny. This stack overflow link directly talks about the same issue, and their workaround does not work (and is.. not exactly right): StackOverflow
1
0
578
Jan ’23
SceneView crash on macOS Big Sur Beta 6
This was working on previous macOS Big Sur Beta 5, but as of Beta 6, with this minimal code, my macOS app crashes instantly when started. Code: ModelView.swift import SwiftUI import SceneKit struct ModelView: View {     var body: some View {         return SceneView(scene: SCNScene())     } } Crash details: language code-blockdyld`__abort_with_payload: &#9;&#9;0x11ae8f6f4 <+0>:&#9;movl&#9; $0x2000209, %eax&#9;&#9;&#9;&#9;&#9;; imm = 0x2000209 &#9;&#9;0x11ae8f6f9 <+5>:&#9;movq&#9; %rcx, %r10 &#9;&#9;0x11ae8f6fc <+8>:&#9;syscall >&#9;0x11ae8f6fe <+10>: jae&#9;&#9;0x11ae8f708&#9;&#9;&#9;&#9;&#9;&#9;&#9; ; <+20> &#9;&#9;0x11ae8f700 <+12>: movq&#9; %rax, %rdi &#9;&#9;0x11ae8f703 <+15>: jmp&#9;&#9;0x11ae8d8e4&#9;&#9;&#9;&#9;&#9;&#9;&#9; ; cerror_nocancel &#9;&#9;0x11ae8f708 <+20>: retq&#9; &#9;&#9;0x11ae8f709 <+21>: nop&#9;&#9; &#9;&#9;0x11ae8f70a <+22>: nop&#9;&#9; &#9;&#9;0x11ae8f70b <+23>: nop&#9;&#9; When I look at the report, it shows this: dyld: Library not loaded: /System/Library/Frameworks/_SceneKit_SwiftUI.framework/Versions/A/_SceneKit_SwiftUI   Referenced from: /Users/myuser/Library/Developer/Xcode/DerivedData/test-sceneview-evrchiajpqhubmeajvyhnlrdpiju/Build/Products/Debug/test-sceneview.app/Contents/MacOS/test-sceneview   Reason: image not found And indeed that lib is not there. I'm curious if anyone else has seen this, or can confirm that I am not crazy? (well, not about this anyway). I submitted feedback (FB8668898). Eric
3
0
862
Sep ’20