Same error and behavior. Fails on 15.3, loads on 15.2. Feedback: FB13722734.
Post
Replies
Boosts
Views
Activity
Same crash, and in our case a LazyHStack, instead of LazyHGrid. At least in the most common case.
I'm looking for this too. It seems like a glaring oversight. Feedback submitted.
Related to this, the old assistant view was far superior to the multiple editors we have now. I really want the "second editor" to go back to being the assistant view, and have history, previews, etc. all open there. As it is now, I always have a second editor open on the right, which means that when a preview opens (or the history navigator), that editor gets split so it's only 1/4 of the screen which is not usable for me, even on a 34" monitor.
If we had the assistant view back, opening previews automatically wouldn't be so frustrating. But it's not an option in Settings -> Navigation -> Optional Navigation.
@bweinstein I guess it's not expected behavior then. I verified the issue doesn't happen when running as a sheet in a normal app also. I uploaded our project in the feedback.
I'd love to know if there's an easy fix!
Video of the issue
https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExdTNpcXk1NXZtMHY0ZWdrbjAxejc1eXlpbjRkNHBnZ2R2cGhpdmQ1cSZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/AkWhUFUXpHcxNYCQz5/giphy.gif
I was extremely disappointed to see that there were literally 0 mentions of vim in the Xcode 14 Beta 1 or 2 release notes. Can we at least get the dot operator apple?
Try defaults write com.apple.dt.XCBuild EnableSwiftBuildSystemIntegration 0 to disable the new build system on 13.3.
I'm seeing this same issue, but on iOS 15 for iPhone 6s and iPhone 7. Tried adding libswift_Concurrency.tbd but it didn't help.
dyld[439]: Symbol not found: _$sScP8rawValues5UInt8Vvg
Referenced from: /private/var/containers/Bundle/Application/45964DC2-70D5-4D0A-83AB-726FA16E46FC/LingQ.app/LingQ
Expected in: /usr/lib/swift/libswift_Concurrency.dylib
Symbol not found: _$sScP8rawValues5UInt8Vvg
Referenced from: /private/var/containers/Bundle/Application/45964DC2-70D5-4D0A-83AB-726FA16E46FC/LingQ.app/LingQ
Expected in: /usr/lib/swift/libswift_Concurrency.dylib
You can use something like this as a general replacement to avoid figuring out a value:
extension View {
func withoutAnimation() -> some View {
self.animation(nil, value: UUID())
}
}