The following "Hello World" app fails to run with Error: GeometryProxy cannot be constructed because it has no accessible initializers.
Likewise about 50 to 60 SwiftUI perfectly good programs worked flawlessly before I updated the app about 20 minutes ago. Now, none of them work.
Where is the proper place to report a major of releasing this version of the app ?
Likewise about 50 to 60 SwiftUI perfectly good programs worked flawlessly before I updated the app about 20 minutes ago. Now, none of them work.
Where is the proper place to report a major of releasing this version of the app ?
Code Block import SwiftUI import PlaygroundSupport struct ContentView: View { var body: some View { GeometryProxy { geometry in Text("Hello World") .frame(width: geometry.size.width * 0.9 ) } } } PlaygroundPage.current.setLiveView( ContentView() )
I am also encountering numerous problems with the update to 3.4 (1302.27). They range from
to playground pages just aborting with the error flag saying
(Note: in case it’s not obvious, I added the comment enclosed by the brackets.)
And in one case, there’s even a thread dump — this is from a playground which was just fine 2 days ago:
It is nice to have a console and somewhat better error reporting, but yikes, this update has delivered disaster after disaster — perfectly working playgrounds in which I have a lot of effort invested are now trash.
I have only an iPad to write playgrounds, and therefore don’t have access to possibly better error analysis in Xcode. Pretty frustrating.
Feedback Assistant is where you can file bug reports. You may have to sign in to a Developer account (you don’t have to be a paying developer; just the “free” level). The problem is that when filing a bug report, you should submit the simplest case which reproduces the error. That’s going to be nigh impossible distilling such a case from fairly large projects containing complex code.
Code Block The operation couldn’t be completed. (PlaygroundBuild.BuildSystem.BuildError error 0.)
to playground pages just aborting with the error flag saying
Code Block There was a problem encountered while running this playground. Check your [previously fine and executable!] code.
(Note: in case it’s not obvious, I added the comment enclosed by the brackets.)
And in one case, there’s even a thread dump — this is from a playground which was just fine 2 days ago:
Code Block remoteProcessWasInterrupted Error: Fatal error: file SwiftUI, line 0 ... [thread dump elided]
It is nice to have a console and somewhat better error reporting, but yikes, this update has delivered disaster after disaster — perfectly working playgrounds in which I have a lot of effort invested are now trash.
I have only an iPad to write playgrounds, and therefore don’t have access to possibly better error analysis in Xcode. Pretty frustrating.
Feedback Assistant is where you can file bug reports. You may have to sign in to a Developer account (you don’t have to be a paying developer; just the “free” level). The problem is that when filing a bug report, you should submit the simplest case which reproduces the error. That’s going to be nigh impossible distilling such a case from fairly large projects containing complex code.