作者:amy | 来源:互联网 | 2023-05-18 13:23
我的UITableView中的某些行需要删除并在编辑模式下移动,但有些行只是移动.在这种方法中,我可以启用或禁用某些行的编辑
override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool{
return true
}
但是如何在启用移动的情况下禁用某些行的删除?
1> keji..:
返回.None
为editingStyleForRowAtIndexPath
:
func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle {
return .None
}
这里有一个更完整的答案,显示如何删除缩进 - > 编辑UITableView时有没有办法隐藏" - "(删除)按钮