在最后一部分用一个按钮插入行tableview

时间:2018-01-25 10:31:43

标签: ios swift swift3

我想在该部分中使用按钮制作一个tableview。我想按钮再添加一行到像这样的桌面视图

enter image description here

以下是源代码:

 func numberOfSections(in tableView: UITableView) -> Int {
    return 2
}

func tableView(_ tableView: UITableView, numberOfRowsInSection sectionInd: Int) -> Int {
    if sectionInd == 0 {
    return others.count
        } else {
    return 1
        }
}


func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    if indexPath.section == 0 {

    let cell = tableView.dequeueReusableCell(withIdentifier: "ShareCell", for: indexPath as IndexPath) as! SelectOthersTableViewCell
    cell.firstName.text = others[indexPath.row].firstname
    cell.lastName.text = others[indexPath.row].lastname
    return cell
    } else {
        let cell = tableView.dequeueReusableCell(withIdentifier: "addCell", for: indexPath as IndexPath) as! addTableCell
            cell.addCells.tag = indexPath.row
            cell.addCells.addTarget(self, action: #selector(OthersViewController.addButtonClicked(sender:)), for: UIControlEvents.touchUpInside)
        return cell
    }
}


func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    var height:CGFloat = CGFloat()
   if indexPath.section == 0 {
        height = 145
   } else {
        height = 50
    }
    return height
}

@objc func addButtonClicked(sender:UIButton) {
    data.append("Guest 1")
    let buttonPosition = sender.convert(CGPoint.zero, to: self.tableView)
    let indexPath = self.tableView.indexPathForRow(at: buttonPosition)
    print("indexPath \(indexPath!)")
    selectedIndexes[indexPath!] = !(selectedIndexes[indexPath!] ?? false)
    tableView.reloadRows(at: [indexPath!], with: .automatic)
    tableView.beginUpdates()
    tableView.insertRows(at: [IndexPath(row: data.count-1, section: 0)], with: .automatic)
    tableView.endUpdates()
}

我需要帮助。如何通过图标(+)上的点击按钮添加新行?

2 个答案:

答案 0 :(得分:1)

单击“添加”按钮,您不应重新加载整个表视图,因为它会增加处理时间。而不是你可以使用   beginUpdates endUpdates ,用于在点击按钮时插入新单元格。

基本方法:

(1)。单击“添加”,更新表视图的数据源。

dataSource.append(NewRecord)

(2)。插入新单元格:

 tableView.beginUpdates()
 tableView.insertRows(at: [IndexPath(row: dataSource.count-1, section: 0)], with: .automatic)
 tableView.endUpdates()

审核您的代码:

func addButtonClicked(sender:UIButton) {
  data.append("Guest 1")
  .....
} 

您的数据源是其他,在其上创建和配置了tableview。 但是,点击添加按钮( addButtonClicked 功能),您就不会更新其他数据源。请验证它,但您的代码似乎不错。

答案 1 :(得分:0)

fun onPlusButtonClicked(){
    sections.append(whatever you want)
    items[2].append(["1", "2", "3", "4"]) // whatever you want to add here
    tableview.reloadData() // you can call this on a background thread as well, if its not working
}

//如何使用tableview

var sections = Your array

var items = your array

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    return sections[section]
}

func numberOfSections(in tableView: UITableView) -> Int {
    return sections.count
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return items[section].count
}