XcodeでTableViewCellを使用した画面を作成していますが、タイトルにあるエラーが出てしまいます。
作りたい仕様
QuizCell
.xibファイルを作成して、cellをアレンジしています。上部ラベルにTableViewで設定しているq.question[indexPath.row]の値を格納する予定です。下5つのボタンは、押すと○と●が切り替わるようになっています。
QuizCellが格納される画面(AnswerQuizController)
下図のTableViewとQuizCellを紐づけています。
AnswerQuizControllerのコード
コード文です。
Swift
1func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 2// return q.question.count 3// print(q.question.count) 4 return 1 5}
の最後の一文を、return 0
とすると真っ白+下のボタンの画面は正常に出ますが、return 1
にすると画面が表示される前にエラーで落ちてしまうので、tableViewでうまくtableviewcellが呼び出せていないのかなと予想していますが、おかしいところがまだ見つかっていません。
Swift
1 2import UIKit 3 4class AnswerQuizViewController: UIViewController, UITableViewDelegate { 5 6 7 var q: QuestionSeries! 8 9 @IBOutlet weak var quizTableView: UITableView! 10 11 12 13 override func viewDidLoad() { 14 super.viewDidLoad() 15 quizTableView.dataSource = self 16 quizTableView.delegate = self 17 18 // cell xibファイルを使うときは書く必要があるやつ。 19// quizTableView.register(UINib(nibName: K.Cells.QuizCellNibName, bundle: nil), forCellReuseIdentifier: K.Cells.QuizCellIdentifier) 20 quizTableView.register(UINib(nibName: "QuizCell", bundle: nil), forCellReuseIdentifier: "QuizCellIdentifier") 21 22 // Do any additional setup after loading the view. 23 } 24 25 26 27 /* 28 // MARK: - Navigation 29 30 // In a storyboard-based application, you will often want to do a little preparation before navigation 31 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 32 // Get the new view controller using segue.destination. 33 // Pass the selected object to the new view controller. 34 } 35 */ 36 37} 38 39// MARK: - quizTableViewのアレンジ 40 41extension AnswerQuizViewController: UITableViewDataSource { 42 //, QuizCellDelegate 43// func quizCellDidChangeCurrentButtonIndex(_ cell: QuizCell, index: Int) { 44// if let indexPath = self.quizTableView.indexPath(for: cell){ 45// self.q.question[indexPath.row].answer = index 46// print(index) 47// } 48// } 49 50 51func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 52// return q.question.count 53// print(q.question.count) 54 return 1 55} 56 57func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 58 let question = q.question[indexPath.row] 59 let cell = quizTableView.dequeueReusableCell(withIdentifier: K.Cells.QuizCellIdentifier, for: indexPath) as! QuizCell 60 //cell.questionLabel.text = question.text 61 print(question.text) 62 63 return cell 64} 65} 66
追加で必要な情報は追加いたしますので、コメントいただければと思います。
何かエラーを吐く原因となっている箇所のご指摘などいただければ幸いです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。