在UITableview上滑动以删除而不确认

时间:2018-08-31 05:20:49

标签: ios swift uitableview delete-row

我有一个使用websocket实时数据的表格视图。表格视图每两秒钟刷新一次单元格(或行)。

我想实现要擦除的功能(不显示删除按钮),因为每隔两秒钟我会调用一次重载行,这一次试图删除表视图对齐崩溃的特定行。有人可以帮忙吗?

2 个答案:

答案 0 :(得分:0)

您可以将UISwipeGestureRecognizer添加到TableViewCell中。

例如

let swipeToDeleteGesture = UISwipeGestureRecognizer(target: self, action: #selector(deleteCellWithoutConfirm(gesture:)))
swipeToDeleteGesture.direction = .left
your_cell.addGestureRecognizer(swipeToDeleteGesture)

并处理删除功能

@objc func deleteCellWithoutConfirm(gesture: UIGestureRecognizer) {
    guard let cell = gesture.view as? UITableViewCell,
        let indexPath = tableView.indexPath(for: cell) else {
        return
    }
    // delete your data first, then reload tableView
    your_data.remove(at: indexPath.row)
    tableView.reloadSections(IndexSet(integer: 0), with: UITableViewRowAnimation.fade)
}

答案 1 :(得分:-1)

快捷键4

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

func tableView(_ tableView: UITableView, commit editingStyle:   UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
        if (editingStyle == .delete) {
            data.remove(at: indexPath.row)
            tableView.beginUpdates()
            tableView.deleteRows(at: [indexPath], with: .middle)
            tableView.endUpdates()
        }
}