Posts

Post marked as solved
7 Replies
Same error and behavior. Fails on 15.3, loads on 15.2. Feedback: FB13722734.
Post not yet marked as solved
3 Replies
Same crash, and in our case a LazyHStack, instead of LazyHGrid. At least in the most common case.
Post not yet marked as solved
4 Replies
I'm looking for this too. It seems like a glaring oversight. Feedback submitted.
Post not yet marked as solved
1 Replies
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.
Post not yet marked as solved
2 Replies
@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!
Post marked as solved
6 Replies
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?
Post marked as solved
2 Replies
Try defaults write com.apple.dt.XCBuild EnableSwiftBuildSystemIntegration 0 to disable the new build system on 13.3.
Post not yet marked as solved
2 Replies
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
Post marked as solved
3 Replies
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()) } }