I\'m pretty new to coding in Swift and I\'m not too sure what\'s happening here - can anyone help?
Thanks
import UIKit
class SecondViewController: U
Most likely, your IBOutlet
, toDoItem
, was not bound successfully to a UITextField
in Interface Builder. Check the outlets for your text field in Interface Builder and make sure it's hooked up successfully.
If the outlet is hooked up properly, another candidate source of this problem is the instantiation of the view controller itself. If you instantiated it programmatically (e.g. SecondViewController()
instead of storyboard.instantiateViewControllerWithIdentifier(...)
), that would also result in this error.