使用带有自定义单元格和下一个按钮的 TableView 在数组中加载下一个问题

Load next question in array using a TableView with Custom Cells & Next Button

我是编程新手,使用 Table 带有自定义单元格的视图和下一个按钮很难移动到我的测验数组中的下一个 question/answers。

我的设置:

  1. 故事板:ViewController 带有 Table 视图控制器和下一个按钮
  2. 自定义单元格:使用 xib 文件制作
  3. 带有我要更新的变量 "questionNumber" 的问题数组

采取的步骤:

  1. 我能够加载数组中的第一项
  2. 创建了下一个按钮,通过变量 "index"
  3. 将 questionNumber 加 1

我如何:

  1. 将这个新值传递回我的 class 以更新那里的问题编号 &
  2. 使用数组中的下一个数据更新我的 tableView

数组

struct DataBrain {

var questionNumber: Int? = 0

var dataArray: [MultipleChoice] = [MultipleChoice(question: "What force is opposite to gravity?", options: ["Lift", "Thrust", "Drag", "Gravity"], rightAnswer: "Lift"), MultipleChoice(question: "What is 1 x 3", options: ["1", "2", "3", "4"], rightAnswer: "3"), MultipleChoice(question: "What does MEA stand for?", options: ["My Eating Area", "My Entering Area", "Minimum Entering Area", "None of the above"], rightAnswer: "None of the above")

带有 Table 视图、自定义单元格和下一步按钮的视图控制器

    class MultipuleChoiceViewController: UIViewController {


    @IBOutlet weak var nextButton: LongButtons!

    @IBOutlet weak var table: UITableView!

    var dataBrain = DataBrain()

    override func viewDidLoad() {
        super.viewDidLoad()

        table.dataSource = self
        table.delegate = self

        table.register(QuestionTableViewCell.nib(), forCellReuseIdentifier: QuestionTableViewCell.identifier)
        table.register(AnswerTableViewCell.nib(), forCellReuseIdentifier: AnswerTableViewCell.identifier)

    }

    @IBAction func nextButtonPressed(_ sender: Any) {

        if var index = dataBrain.questionNumber {
            if index + 1 < dataBrain.dataArray.count {

                index += 1

           } else {
                performSegue(withIdentifier: "MultipleChoiceToResults", sender: self)
           }

        }
    }
}

// MARK: - TableView DataSource:

extension MultipuleChoiceViewController: UITableViewDataSource {

    //Number of Rows:
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        if let index = dataBrain.questionNumber {
            let data = dataBrain.dataArray[index]
            if let count = data.options?.count {
                return count + 1
            }
        }
        return 0
    }

    //Return a Cell:
    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        if indexPath.row == 0 {

            let cell = tableView.dequeueReusableCell(withIdentifier: QuestionTableViewCell.identifier) as! QuestionTableViewCell

            if let index = dataBrain.questionNumber {
                let data = dataBrain.dataArray[index]
                cell.questionLabel.text = data.question
                print (dataBrain.dataArray[index])
            }

            return cell

        } else {

            let cell = tableView.dequeueReusableCell(withIdentifier: AnswerTableViewCell.identifier) as! AnswerTableViewCell

            if let index = dataBrain.questionNumber {
                let data = dataBrain.dataArray[index]
                cell.answerLabel.text = data.options![indexPath.row - 1]
            }

            return cell

        }
    }
}

// MARK: - TableView Delegate

extension MultipuleChoiceViewController: UITableViewDelegate {

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

    }
}

更新您的下一个按钮选择器

@IBAction func nextButtonPressed(_ sender: Any) {

        if var index = dataBrain.questionNumber {
            if index + 1 < dataBrain.dataArray.count {

              index += 1
              dataBrain.questionNumber = index
              table.reloadData()

           } else {
                performSegue(withIdentifier: "MultipleChoiceToResults", sender: self)
           }

        }