I use a table view embedded in a view controller. I stored in the table view some items like UITextField
, UISlider
, and so on. When I connect these items in the class, the app crashes on the UITextView
outlet.
@IBOutlet weak var nameProfileTextField: UITextField!
@IBOutlet weak var ageSlider: UISlider!
@IBOutlet weak var descriptionProfileTextView: UITextView! //Crash here!
The error message does not help me. Console only shows the message below with no more details.
terminating with uncaught exception of type NSException
The @IBOutlet
connection seems to be ok as the image below shows.