Post

Replies

Boosts

Views

Activity

Reply to instance member .... cannot be used on type
this works bu if I take away the comment before print I get Cannot find type 'myInstance' in scope that obvisly work in the Text statment Why? // // ContentView.swift // myTest // // Created by N.N on 2020-11-25. // import SwiftUI struct ContentView: View {   var myInstance = MyClass() //  print(myInstance.theName)   var body: some View {     Text(myInstance.theName)       .padding()   } } struct ContentView_Previews: PreviewProvider {   static var previews: some View {     ContentView()   } } class MyClass {   var theName: String = "myName" }
Nov ’20