でを表示しようとしUIAlertController
ていUITextView
ます。行を追加すると:
//Add text field
alertController.addTextFieldWithConfigurationHandler { (textField) -> Void in
}
私が取得Runtime
エラー:
致命的なエラー:オプション値のアンラップ中に予期せずnilが見つかりました
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)
これはをViewController
介して私の内部に表示されIBAction
ます。
ここからコードをダウンロードしましたが、正常に動作します。そのメソッドをコードにコピーして貼り付けたところ、壊れてしまいました。最終行に自己が存在しても影響はありません。
UITextField
、のではなくUITextView
?