Todoリストアプリを作っているのですが、アラートダイアログのOKボタンをタップした際にThread 1: signal SIGABRTのエラーが発生します。どうすれば良いでしょうか。
swift
1import UIKit 2 3class ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate 4{ 5 6 7 8 var todoList = [String]() 9 10 11 12 @IBOutlet weak var tableView: UITableView! 13 14 override func viewDidLoad() { 15 super.viewDidLoad() 16 // Do any additional setup after loading the view. 17 } 18// プラスボタンタップ時の処理 19 @IBAction func tapAddBotton(_ sender: Any) { 20 21 22 let alertController = UIAlertController(title: "ToDo追加", 23 message: "ToDoを入力してください",preferredStyle: UIAlertController.Style.alert) 24// テキストエリアを追加 25 alertController.addTextField(configurationHandler: nil) 26// OKボタンの追加 27 let okAction = UIAlertAction(title: "OK", style: UIAlertAction.Style.default) { (action: UIAlertAction) in 28// okボタンタップ時の処理 29 if let textField = alertController.textFields?.first { 30// 配列への挿入 31 self.todoList.insert(textField.text!, at: 0) 32// セルへの表示 33 self.tableView.insertRows(at: [IndexPath(row: 0, section: 0)], 34 with: UITableView.RowAnimation.right) 35 } 36 } 37// okボタンをタップしたときの処理 38 alertController.addAction(okAction) 39// キャンセルボタンの処理 40 let cancelBotton = UIAlertAction(title: "CANCEL", style: UIAlertAction.Style.cancel,handler: nil) 41// キャンセルボタンの追加 42 alertController.addAction(cancelBotton) 43// ダイアログ表示 44 present(alertController, animated: true, completion: nil) 45// 46 } 47 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 48 return todoList.count 49 } 50 51 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 52 53 let cell = tableView.dequeueReusableCell(withIdentifier: "todoCell", for: indexPath) 54 55 let todoTitle = todoList[indexPath.row] 56 57 cell.textLabel?.text = todoTitle 58 return cell 59 } 60}
Thread 1: signal SIGABRTが出た場合はコンソールに詳細なエラー内容が出力されているはずなので、そのエラーを載せてください。質問内容は再編集できます。