我添加了一个滑动来删除功能,使用
override func tableView(_ tableView: UITableView,
trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath)
-> UISwipeActionsConfiguration?
我正在通过解除/确认操作发出警报。关闭后,我想关闭滑动操作菜单。
override func tableView(_ tableView: UITableView,
trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let deleteClosure:UIContextualAction.Handler = {
(action:UIContextualAction,
view:UIView,
completionHandler:(Bool) -> Void) in
let alert = self.confirmDeletion({ _ in
let row = indexPath.row;
let removed = self.logList.remove(at: row);
self.deleteLogEntry(removed);
//
tableView.reloadData();
//
}, declineBlock: {_ in
tableView.reloadData();// this hides it but w/o animation
});
DispatchQueue.main.async {
self.present(alert, animated: true, completion: nil);
}
}
let deleteAction = UIContextualAction(style: .destructive, title: "Delete", handler: deleteClosure);
return UISwipeActionsConfiguration(actions: [deleteAction]);
}
到目前为止,我发现重新加载表格数据将关闭尾随滑动菜单,但没有动画,看起来很奇怪。有没有办法告诉它用动画解雇?
** 关于重复的注意事项 ** 标记为重复的问题是指在删除行后解雇未按预期工作,这里不是这种情况。当用户取消删除并且未删除行时,我想取消尾随滑动。
我已经尝试过的:
tableView.setEditing(false, animated: true);
- 没有明显的区别tableView.reloadRows(at: [indexPath], with: UITableView.RowAnimation.automatic);
- 行随着动画向右移动,但按钮重叠tableView.resignFirstResponder();
- 没有明显的区别(我不得不尝试)tableView.reloadTable()
- 滑动菜单被关闭但没有动画效果