gpt4 book ai didi

swift - 将单元格删除函数从 Swift 3 转换为 Swift 5

转载 作者:行者123 更新时间:2023-11-30 10:42:21 25 4
gpt4 key购买 nike

这是我在 Swift 3 中删除单元格的函数。我如何在 Swift 5 中编写它?

 override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath)
{
if editingStyle == UITableViewCellEditingStyle.delete
{
foods.remove(at: indexPath.row)
tableView.reloadData()
}
}

感谢您的帮助。

最佳答案

Apple 将 UITableViewCellEditingStyle 重构为 UITableViewCell.EditingStyle所以现在应该是

override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == UITableViewCell.EditingStyle.delete {
foods.remove(at: indexPath.row)
tableView.reloadData()
}
}

关于swift - 将单元格删除函数从 Swift 3 转换为 Swift 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56508426/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com