在swift中的表视图中添加单元格

时间:2018-02-13 06:40:14

标签: ios uitableview

我正在研究表视图。在我的表格视图单元格中,我有两个文本字段,用户可以在其中输入任何数据。当用户单击按钮时,表视图上还有一个按钮可添加新单元格。新单元应该与之前显示的单元格相同。我尝试了一些代码,但它没有用。我的代码就是这个,

extension FlashCardViewController: UITableViewDelegate,UITableViewDataSource, UITextFieldDelegate{

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 5
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = flashCardTableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! FlashCardTableViewCell

   cell.termTxt.delegate = self
   cell.definitionTxt.delegate = self
    return cell
}


func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return 115
}

func textFieldDidEndEditing(_ textField: UITextField) {
    allCellsText.append(textField.text!)
    print(allCellsText)
}

}

这是添加新单元格的按钮代码,

 @IBAction func addCardBtnTapped(_ sender: Any) {

    let indexPath = IndexPath(row: allCellsText.count+1, section: 0)
    flashCardTableView.beginUpdates()
    flashCardTableView.insertRows(at: [indexPath], with: .automatic)
    flashCardTableView.endUpdates()
    view.endEditing(true)
}

当我按下按钮时,应用程序会因显示此错误而崩溃,

*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0.  The number of rows contained in an existing section after the update (5) must be equal to the number of rows contained in that section before the update (5), plus or minus the number of rows inserted or deleted from that section (1 inserted, 0 deleted) and plus or minus the number of rows moved into or out of that section (0 moved in, 0 moved out).'

我的观点看起来像这样, enter image description here

1 个答案:

答案 0 :(得分:1)

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 5 // wrong
    return allCellsText.count // correct

}

您只是插入新单元格,但未向numberOfRowsInSection提供足够的信息。

更新1:

func numberOfSections {
    return 2
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if section == 0 {
        return 5
    } else {
        return allCellsText.count
    }

}


@IBAction func addCardBtnTapped(_ sender: Any) {
    let indexPath = IndexPath(row: allCellsText.count+1, section: 1) // section 1
    flashCardTableView.beginUpdates()
    flashCardTableView.insertRows(at: [indexPath], with: .automatic)
    flashCardTableView.endUpdates()
    view.endEditing(true)
}