tableView(_:canMoveRowAt:)
Asks the data source whether a given row can move to another location in the table view.
Declaration
optional func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> BoolParameters
- tableView:
The table-view object requesting this information.
- indexPath:
An index path locating a row in
tableView.
Return Value
Discussion
This method allows the data source to specify that the reordering control for the specified row not be shown. By default, the reordering control is shown if the data source implements the tableView(_:moveRowAt:to:) method.