8

有没有办法以编程方式触发相当于在具有编辑操作的 UITableViewCell 上向左滑动?这与简单地不同,[tableView setEditing:YES animated:YES]因为该方法将整个表格设置为编辑模式并显示插入/删除左侧附件视图和/或重新排序控件,而不是单行的编辑操作。

4

1 回答 1

-2

您可以optional func tableView(_ tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyleUITableViewDelegate使用。并返回UITableViewCellEditingStyleDelete您要滑动的单元格。func reloadRowsAtIndexPaths(_ indexPaths: [NSIndexPath], withRowAnimation animation: UITableViewRowAnimation)当您想要触发滑动时,用于重新加载该单元格。

于 2016-03-19T15:13:53.227 回答