ToDoアプリを作っていて追加ボタンを押すとアラートが出てテキストを入力しOKボタンを押すとセルに表示させたいのですが、テキストを打ち込み追加を押すとこのようなエラーが出てしまいます。
Thread 1: Exception: "unable to dequeue a cell with identifier Cell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard"
なぜこのようなエラーがでてしまうのでしょうか?```swift
import
1 2class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate { 3 4 @IBOutlet weak var tableView: UITableView! 5 // taskの配列 6 var tasks = [String]() 7 8 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 9 return tasks.count 10 } 11 12 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 13 let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) 14 cell.textLabel?.text = tasks[indexPath.row] 15 print(tasks[indexPath.row]) 16 return cell 17 } 18 19 override func viewDidLoad() { 20 super.viewDidLoad() 21 tableView.delegate = self 22 tableView.dataSource = self 23 // Do any additional setup after loading the view. 24 } 25 26 @IBAction func addAction(_ sender: UIBarButtonItem) { 27 let alertController = UIAlertController(title: title, message: "", preferredStyle: .alert) 28 let okAlert = UIAlertAction(title: "OK", style: .default) { (action) in 29 let textFiels = alertController.textFields![0] 30 let tasktitle = textFiels.text 31 self.tasks.append(tasktitle!) 32 self.tableView.reloadData() 33 } 34 let cancelAlert = UIAlertAction(title: "キャンセル", style: .cancel, handler: nil) 35 alertController.addTextField { (textField: UITextField) -> Void in 36 textField.placeholder = "テキスト" 37 } 38 alertController.addAction(okAlert) 39 alertController.addAction(cancelAlert) 40 present(alertController, animated: true, completion: nil) 41 } 42 43} 44```![イメージ説明](6adc797f5530a2c629f0dcdd3c39ccc3.png)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/19 15:33
2020/06/19 16:15
2020/06/19 16:31
2020/06/19 16:44