从Swift 3中的UITableView删除一行?

前端之家收集整理的这篇文章主要介绍了从Swift 3中的UITableView删除一行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是编程和学习swift的新手,我正在学习swift 2的教程并使用swift 3,因此我跟随时会遇到一些问题,这是我正好坚持的问题.

我有一个名称表,我正在为他们制作一个滑动和删除功能,它从名称变量中删除它们是一个数组.我在xcode中选择了与教程最相似的函数并将它们填满,但是当我单击删除按钮时,我的应用程序随机崩溃.这是删除按钮的代码

func tableView(_ tableView: UITableView,editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {

    let deleteAction = UITableViewRowAction(style: .destructive,title: "Delete") { (rowAction: UITableViewRowAction,indexPath: IndexPath) -> Void in

        print("Deleted")

        self.catNames.remove(at: indexPath.row)
        self.tableView.deleteRows(at: [indexPath],with: UITableViewRowAnimation.automatic)
        self.tableView.reloadData()
    }
适用于Swift 3和Swift 4

使用UITableViewDataSource tableView(:commit:forRowAt :)方法,另请参阅此答案here

func tableView(_ tableView: UITableView,commit editingStyle: UITableViewCellEditingStyle,forRowAt indexPath: IndexPath) {
  if editingStyle == .delete {
    print("Deleted")

    self.catNames.remove(at: indexPath.row)
    self.tableView.deleteRows(at: [indexPath],with: .automatic)
  }
}
原文链接:https://www.f2er.com/swift/320047.html

猜你在找的Swift相关文章