- tableView
- Table view being edited.
- indexPath
- Location of the row.
When the user swipes across a single row to activate the swipe-to-delete feature, a Delete button appears and the table goes into a "swipe to delete editing mode". The table view calls UITableViewSource.WillBeginEditing(UITableView, Foundation.NSIndexPath) to allow the row to adjust its user interface.
This method is called when the table view exits that mode (and the Delete button disappears), usually by the user touching elsewhere in the table view.