Here is the error:
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key answerFour.'
Basically I have connected many UITextFields and UISegmentedControls as outlets in my file. It is crashing immediately when the view is opened. I have looked all over the internet for something that would solve my problem but I can't seem to figure it out. Below shows all of the outlets and how they are declared in code.
@IBOutlet var questionType: UISegmentedControl!
@IBOutlet var required: UISegmentedControl!
@IBOutlet var questionTitleInput: UITextField!
@IBOutlet var questionHint: UITextField!
@IBOutlet var questionTitleMulti: UITextField!
@IBOutlet var numAnswers: UISegmentedControl!
@IBOutlet var answerOne: UITextField!
@IBOutlet var answerTwo: UITextField!
@IBOutlet var answerThree: UITextField!
@IBOutlet var answerFour: UITextField!
I could also use some guidance in what information I need to give you to help solve this problem. It really makes no sense to me.