@benspratling4, did you manage to get this working? I can't get past the third party cloud providers being greyed out. I can only navigate into the iCloud Drive folder from the picker.
Post
Replies
Boosts
Views
Activity
Echoing everyone else: This issue is still painfully present, and there's no known workaround. Something needs to happen. This is not okay.
Putting in a vote for gd, to jump to definition ❤️
I'm still constantly tapping gd to try to jump to definition. That one at least seems like it should be trivial to add.
For the use case of SwiftUI ForEach, you can work around the limitation by using explicit id param.
ForEach(problematicArray, id: \.id) { entry in ... }
Edit: Or perhaps not. It no longer errors in Xcode (14.1), but the compiler dies when attempting to build. Oops.