Reputation: 737
Is @ObservedObject supported in xcode 12 in a MacOs app? If not, any other way to do this? This is my first macos app...Thanks!
Upvotes: 1
Views: 21
Reputation: 257789
Move it out of the body
, ie.
struct ContentView: View {
@ObservedObject var net = Webservice() // << here !!
var body: some View {
...
}
}
Upvotes: 1