I am having a little trouble here: I have a class
class TempC {
func GetData(){
//do stuff
}
}
And in ContentView I want to call the function, but I can't manage to do it, I am getting errors...
struct ContentView: View {
var variable : TempC
variable.GetData()
var body: some View {
Text("Hello World")
}
}
Or in any other method. How can I call an external function now?
PS: The error that I get are on the line with variable.GetData() which are:
- Consecutive declarations on a line must be separated by ";"
- Expected "("in argument list of cantons declaration
- Expected "{"in body of function declaration
- Expected 'func' keyword in instance method declaration
- Invalid redeclaration of 'variable()'
It's like it is expecting to create a new function not to get the one that is already existing.