編集モードでセルを削除したとき、別のメソッドを呼び出したい (UITableViewDelegate)
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == UITableViewCellEditingStyle.delete {
myAray.remove(at: indexPath.row)
print("Hello World")
}
}
上記のようにデリゲートメソッドを書いた場合、
スワイプして編集モードの削除をタップすることでセルの削除はされるのですが
Hello Worldと出力はされておりません。
どのようにすれば定義したメソッドを呼び出すことができるのでしょうか?
よろしくお願いします。