right gesture tap action tableview iOS swift || Get the action for swipe close in uitableview
Solution:
If you want to call some set of codes after the swipe action user had tapped on the screen and swipe options close use the below code.
//inside code to handle the tap after swipe
}
If you want to call some set of codes after the swipe action user had tapped on the screen and swipe options close use the below code.
func tableView(_ tableView: UITableView, didEndEditingRowAt indexPath: IndexPath?) {
//inside code to handle the tap after swipe
}
Comments
Post a Comment