我的UITableView中的某些行需要删除并在编辑模式下移动,但有些行只是移动。 在这种方法中,我可以启用或禁用某些行的编辑
override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool{
return true
}
但是如何在启用移动的情况下禁用某些行的删除?
答案 0 :(得分:5)
为.None
返回editingStyleForRowAtIndexPath
:
func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle {
return .None
}
此处显示如何删除缩进的更完整答案 - > Is there any way to hide "-" (Delete) button while editing UITableView