Swipe to remove account

This commit is contained in:
Ivan Grachyov 2021-12-10 19:53:47 +03:00
parent 39c4868045
commit 8331caac58

View File

@ -181,6 +181,16 @@ class AccountsListViewController: UIViewController {
extension AccountsListViewController: UITableViewDelegate {
func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete {
askBeforeRemoving(wallet: wallets[indexPath.row])
}
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
tableView.deselectRow(at: indexPath, animated: true)
showActionsForWallet(wallets[indexPath.row])