我有一个带有多个UITableViewCells的UITableView。我实现了以下委托方法,以允许用户“滑动到删除”功能。
UITableView -> canEditRowAtIndexPath
UITableView -> commitEditingStyle
但现在我想从我的代码中手动触发“轻扫手势”。我试着实现UITableView - > didSelectRowAtIndexPath,在那里我使用了cell.setEditing(true,animated:true)。但它不起作用。关于我如何做到这一点的任何想法?
这是我目前的代码:
var cell = tableView.cellForRowAtIndexPath (indexPath) as! UITableViewCell
cell.setEditing (true, animated: true)
谢谢!