Post

Replies

Boosts

Views

Activity

Cannot find type 'myInstance' in scope
this works but 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" }
1
0
1.3k
Nov ’20
instance member .... cannot be used on type
This code give err instance member theName cannot be used on type myClass any suggestions? // //  ContentView.swift //  myTest // //  Created by N.N on 2020-11-25. // import SwiftUI struct ContentView: View {     var body: some View {         Text(MyClass.theName as! String)             .padding()     } } struct ContentView_Previews: PreviewProvider {     static var previews: some View {         ContentView()     } } class MyClass {     var theName: String?     init() {         theName = "myName"     } }
3
0
4k
Nov ’20