从部分中删除行

Remove Row From Section

这是我的sectionArray

 var sectionArray = [Sections]()

这就是我计算部分中有多少行的方法

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

这是我通过滑动删除一行的代码。

  func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
    return true
}

func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
    if editingStyle == UITableViewCell.EditingStyle.delete {
        sectionArray[indexPath.section].remove(at: indexPath.row)
        if sectionArray[indexPath.section].title.count == 0 {
            sectionArray.remove(at: indexPath.row)
        }
        tableView.deleteRows(at: [indexPath], with: UITableView.RowAnimation.automatic)
    }
}

func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
    
    let delete = UITableViewRowAction(style: .normal, title: "Delete") { action, index in
        //self.isEditing = false
        print("delete button tapped")
    }
    delete.backgroundColor = UIColor.red
    return [delete]
}

理论上这个删除内容应该有效,但我收到错误消息 No exact matches in call to subscript at

sectionArray[indexPath.section].remove(at: indexPath.row)
/// This line
sectionArray.remove(at: indexPath.row)
/// should be like this
sectionArray.remove(at: indexPath.section)
/// This line will remove the section from the table 
tableView.deleteSections(.init(integer: indexPath.section), with: .automatic)

您正在使用行删除部分

编辑

用这个替换您提供给我们的所有代码

      /*
    func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
        return true
    }
    
    func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
        if editingStyle == UITableViewCell.EditingStyle.delete {
            sectionArray[indexPath.section].remove(at: indexPath.row)
            if sectionArray[indexPath.section].title.count == 0 {
                sectionArray.remove(at: indexPath.row)
            }
            tableView.deleteRows(at: [indexPath], with: UITableView.RowAnimation.automatic)
        }
    }
    
    func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
        
        let delete = UITableViewRowAction(style: .normal, title: "Delete") { action, index in
            //self.isEditing = false
            print("delete button tapped")
        }
        delete.backgroundColor = UIColor.red
        return [delete]
    }
     */
    
    func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
        
        let delete = UITableViewRowAction(style: .normal, title: "Delete") { action, index in
            //self.isEditing = false
            sectionArray[indexPath.section].remove(at: indexPath.row)
            tableView.deleteRows(at: [indexPath], with: UITableView.RowAnimation.automatic)
            if sectionArray[indexPath.section].items.isEmpty {
                sectionArray.remove(at: indexPath.section)
                tableView.deleteSections(.init(integer: indexPath.section), with: .automatic)
            }
        }
        delete.backgroundColor = UIColor.red
        return [delete]
    }