Próbuję pokazać a UIAlertController
z UITextView
. Kiedy dodam linię:
//Add text field
alertController.addTextFieldWithConfigurationHandler { (textField) -> Void in
}
Wyskakuje mi Runtime
błąd:
błąd krytyczny: nieoczekiwanie znaleziono zero podczas rozpakowywania wartości opcjonalnej
let alertController: UIAlertController = UIAlertController(title: "Find image", message: "Search for image", preferredStyle: .Alert)
//cancel button
let cancelAction: UIAlertAction = UIAlertAction(title: "Cancel", style: .Cancel) { action -> Void in
//cancel code
}
alertController.addAction(cancelAction)
//Create an optional action
let nextAction: UIAlertAction = UIAlertAction(title: "Search", style: .Default) { action -> Void in
let text = (alertController.textFields?.first as! UITextField).text
println("You entered \(text)")
}
alertController.addAction(nextAction)
//Add text field
alertController.addTextFieldWithConfigurationHandler { (textField) -> Void in
textField.textColor = UIColor.greenColor()
}
//Present the AlertController
presentViewController(alertController, animated: true, completion: nil)
Jest to prezentowane w moim ViewController
za pośrednictwem pliku IBAction
.
Pobrałem kod stąd i działa dobrze. Skopiowałem i wkleiłem tę metodę do mojego kodu i się psuje. Obecność siebie w ostatniej linii nie ma żadnego wpływu.
UITextField
, a nieUITextView
?