前提・実現したいこと
画像のように UITableView
を複数(2つ)並べたいです。
複数並べるとなぜかアプリがクラッシュします。
UITbaleViewを並べる際は1個と2個の時では何か違うのでしょうか??
発生している問題・エラーメッセージ
Thread 1: "unable to dequeue a cell with identifier customCell01 - must register a nib or a class for the identifier or connect a prototype cell in a storyboard"
該当のソースコード
@IBOutlet var tableView: UITableView! @IBOutlet weak var tableView02: UITableView! override func viewDidLoad() { super.viewDidLoad() ... tableView.delegate = self tableView.dataSource = self tableView02.delegate = self tableView02.dataSource = self // カスタムセル登録 tableView.register(UINib(nibName: "EditListTableViewCell", bundle: nil), forCellReuseIdentifier: "customCell01") tableView02.register(UINib(nibName: "ListCell", bundle: nil), forCellReuseIdentifier: "customCell") ... // MARK: - UITableView func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.pageInfos.count } func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "customCell01", for: indexPath) as! EditTwitterListTableViewCell let url = URL(string:pageInfos[indexPath.row].imageUrl) Nuke.loadImage(with: url, into: cell.iconImage) cell.name.text = pageInfos[indexPath.row].name cell.url.text = pageInfos[indexPath.row].url return cell } func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { return 100 } func tableView02(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 1 } func tableView02(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "customCell01", for: indexPath) as! EditTwitterListTableViewCell cell.name.text = "name" cell.url.text = "url" return cell } func tableView02(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { return 100 }
試したこと
・セルの identifier
の接続確認
・UITbaleViewのOutlet確認
など
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/12/17 15:26 編集
2021/12/17 15:29
退会済みユーザー
2021/12/17 15:31
退会済みユーザー
2021/12/17 15:33
退会済みユーザー
2021/12/17 15:39
退会済みユーザー
2021/12/21 08:48