A UIAlertController
ile göstermeye çalışıyorum UITextView
. Satırı eklediğimde:
//Add text field
alertController.addTextFieldWithConfigurationHandler { (textField) -> Void in
}
Bir Runtime
hata alıyorum:
ölümcül hata: İsteğe bağlı bir değeri açarken beklenmedik şekilde sıfır bulundu
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)
Bu, ViewController
bir IBAction
.
Kodu buradan indirdim ve sorunsuz çalışıyor. Bu yöntemi kopyalayıp koduma yapıştırdım ve bozuldu. Son satırda benliğin varlığının hiçbir etkisi yoktur.
UITextField
yerineUITextView
?