どなたか、お知恵を貸して頂けると助かります。
よろしくお願いします!
前提・実現したいこと
[前提]
・xibファイルにcellを作成
・storyboardにtableViewを設置
・cellの内容はswiftファイルに作成
・Bild後に下記エラーが出ます
・シュミレーターの画面は真っ白のままです
[実現したいこと]
tableViewを使ったTodoアプリの作成
発生している問題・エラーメッセージ
Thread 1: EXC_BAD_ACCESS (code=2, address=0x7ffeeb93bff8)
該当のソースコード
Swift
1@IBOutlet weak var tableView: UITableView! 2 3 override func viewDidLoad() { 4 super.viewDidLoad() 5 6 tableView.delegate = self 7 tableView.dataSource = self 8 configureTableViewCell() 9 } 10 11 func configureTableViewCell() { 12 // ⬇︎エラー該当箇所 let nib 〜⬇︎ 13 let nib = UINib(nibName: "TableViewCell", bundle: nil) 14 let cellID = "CustomeCell" 15 tableView.register(nib, forCellReuseIdentifier: cellID) 16 configureTableViewCell() 17 } 18 19 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 20 return infoLists.count 21 } 22 23 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 24 let cell = tableView.dequeueReusableCell(withIdentifier: "CustomCell", for: indexPath) as! TableViewCell 25 26 cell.iconView.image = UIImage(named: infoLists[indexPath.row].iconName) 27 28 cell.titleLabel.text = infoLists[indexPath.row].title 29 30 cell.discriptionLabel.text = infoLists[indexPath.row].description 31 return cell 32 } 33} 34 35
試したこと
① viewDidLoadの内のselfの箇所( tableViewのデリゲートとデータソースを呼び出す )
https://teratail.com/questions/226468
②変数の値のチェック
https://qiita.com/aritaku/items/733f85ff43b8fc268ba6
*コンソールのpoコマンドというものを試してみました。
*ブレイクポイントの使い方を理解していません。
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/24 01:21