使用多个tableviews删除View Controller中的UITableView行(Swift)

时间:2018-06-03 18:46:18

标签: ios swift uitableview row delete-row

我正在尝试在包含多个UITableViews的viewcontroller中的一个tableview中实现删除行。我的数组与NSUserDefaults一起保存。 这是我的代码,但我收到错误Index out of range这里也是我的项目的链接,如果有人想测试它:https://files.fm/f/wv9uerhn

 func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {

    if editingStyle == .delete {

    if tableView == ScheduleTableView{

       // Here is my code but it gives me an error, first you need to add a row with the add button

        let defaults = UserDefaults.standard
        var myarray = defaults.stringArray(forKey: "ScheduleArray") ?? [String]()

        print(myarray)
        myarray.remove(at: indexPath.row)
        ScheduleTableView.deleteRows(at: [indexPath], with: .fade)


    }

    if tableView == GoalsTableView{



    }
  }
}

1 个答案:

答案 0 :(得分:1)

您实际上没有将已删除记录的数组保存到UserDefaults。将代码更新为

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

        if tableView == ScheduleTableView{

           // Here is my code but it gives me an error, first you need to add a row with the add button

            let defaults = UserDefaults.standard
            var myarray = defaults.stringArray(forKey: "ScheduleArray") ?? [String]()

            print(myarray)
            myarray.remove(at: indexPath.row)
            defaults.set(myarray, forKey: "ScheduleArray")
            ScheduleTableView.deleteRows(at: [indexPath], with: .fade)


        }

        if tableView == GoalsTableView{



        }
    }
  }
}

希望这会有所帮助。快乐的编码。