ContentView error

I'm having issues in Xcode with the ContentView. The error says "cannot find ContentView in Scope". How do I fix that?

Accepted Reply

You should have in your code somewhere, something like this:

struct ContentView: View {

    var body: some View {
        Text("Hello, World!")
    }
}
Add a Comment

Replies

wrong image. heres the correct image

You should have in your code somewhere, something like this:

struct ContentView: View {

    var body: some View {
        Text("Hello, World!")
    }
}
Add a Comment

Just make sure it has a target selected under target membership: