我正在努力实现以下目标:
截至目前,我可以在swipe left
上显示删除按钮并执行相应的操作。而Item-2是默认行为。
因此,唯一要做的就是以编程方式显示删除按钮。
我尝试了以下内容:
cell.setEditing(true, animated: true)
在didSelectRow
中,但这似乎没有任何效果。如前所述,左侧滑动显示按钮。所以我相信我的以下功能正确实现:
func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool
func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]?
即使尝试实施以下内容:
func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle
但是再没有效果。
那么有没有办法实现我想要实现的行为?