After updating my iOS Device to 15.7, I can not do any dev work on its paired watch. I've tried restarting all devices, tried Xcode 13.4.1, and nothing.
Xcode cycles between after several minute intervals
"Preparing watch for development"
to
"waiting for first unlock" (the watch has been locked and unlocked several times
to
"Loading meta data from watch"
Is anyone else having this issue? Do I need to wait for an Xcode update from Apple?
Post
Replies
Boosts
Views
Activity
I have a List that contains rows with children in a sidebar. It generates the proper disclosure groups, but the issue that by default, on macOS, the groups are expanded, which is what I want.
On iOS, they're closed by default.
Is there a way to have them expanded by default?
List(viewModel.hierarchicalRows, children: \.children) { element in
self.rowView(for: element)
}