TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

SOLVED: Day 27: Project 5 Part One - Pick a word, Any word

Forums > 100 Days of Swift

@Bcxxx  

Hi there!

I am not sure what I did wrong in here, but I am getting an error saying Value of type 'ViewController' has no member 'submit'. So, basically I am getting an error on line self?.submit(answer).

@objc private func promptForAnswer() {
        let ac = UIAlertController(title: "Enter answer", message: nil, preferredStyle: .alert)
        ac.addTextField()

        let submitAction = UIAlertAction(title: "Submit", style: .default) { [weak self, weak ac] action in
            guard let answer = ac?.textFields?[0].text else {
                return
            }
            self?.submit(answer)
        }

        ac.addAction(submitAction)
        present(ac, animated: true)
    }

Any idea what am I doing wrong here?

Thanks in advance!

3      

Hi! But did you create method submit? There is no such one by default you have to create by yourself. It should be something like this.

func submit(_ answer: String) {
  // your code here
}

3      

@Bcxxx  

Yes, you are right...I thought it comes with the Apple's API and that it is not a custome method. I guess I stopped the video too early, now I can see that Paul is getting the same error as me.

3      

Hacking with Swift is sponsored by RevenueCat.

SPONSORED Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure your entire paywall view without any code changes or app updates.

Learn more here

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.